Mercurial > hg > uploader
annotate setup.py @ 10:f8faf3cabb02
typos
author | egj@socialplanning.org |
---|---|
date | Sun, 10 Jan 2010 18:42:06 +0000 |
parents | 3be4b669983c |
children | b8c636b0b567 |
rev | line source |
---|---|
0 | 1 from setuptools import setup, find_packages |
2 import sys, os | |
3 | |
7
a8c60480fce0
make query_string argument more universal
k0s <k0scist@gmail.com>
parents:
6
diff
changeset
|
4 version = "0.2.3" |
0 | 5 |
6 setup(name='uploader', | |
7 version=version, | |
8 description="a file uploader app", | |
8 | 9 long_description="", |
0 | 10 classifiers=[], # Get strings from http://www.python.org/pypi?%3Aaction=list_classifiers |
11 author='Ethan Jucovy', | |
12 author_email='', | |
5 | 13 url='http://k0s.org/hg/uploader', |
14 license="GPL", | |
0 | 15 packages=find_packages(exclude=['ez_setup', 'examples', 'tests']), |
16 include_package_data=True, | |
17 zip_safe=False, | |
18 install_requires=[ | |
19 # -*- Extra requirements: -*- | |
20 'WebOb', | |
21 'Paste', | |
22 'PasteScript', | |
23 ], | |
24 entry_points=""" | |
25 # -*- Entry points: -*- | |
26 [paste.app_factory] | |
27 main = uploader.factory:factory | |
28 """, | |
29 ) | |
30 |