File: setup.py

package info (click to toggle)
agtl 0.8.0.3-1
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd, wheezy
  • size: 1,924 kB
  • ctags: 1,566
  • sloc: python: 12,237; sh: 852; xml: 136; ansic: 128; makefile: 34
file content (27 lines) | stat: -rw-r--r-- 598 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
__author__="daniel"
__date__ ="$31.08.2009 13:48:46$"

from setuptools import setup,find_packages

setup (
  name = 'advcaching',
  version = '0.1',
  packages = find_packages(),

  # Declare your packages' dependencies here, for eg:
  install_requires=['foo>=3'],

  # Fill in these to make your Egg ready for upload to
  # PyPI
  author = 'daniel',
  author_email = '',

  summary = 'Just another Python package for the cheese shop',
  url = '',
  license = '',
  long_description= 'Long description of the package',

  # could also include long_description, download_url, classifiers, etc.

  
)