Mercurial > hg > uploader
annotate setup.py @ 7:a8c60480fce0
make query_string argument more universal
author | k0s <k0scist@gmail.com> |
---|---|
date | Sun, 27 Dec 2009 18:45:28 -0500 |
parents | d2990750e5d6 |
children | 3be4b669983c |
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", | |
9 long_description=""" | |
10 """, | |
11 classifiers=[], # Get strings from http://www.python.org/pypi?%3Aaction=list_classifiers | |
12 author='Ethan Jucovy', | |
13 author_email='', | |
5 | 14 url='http://k0s.org/hg/uploader', |
15 license="GPL", | |
0 | 16 packages=find_packages(exclude=['ez_setup', 'examples', 'tests']), |
17 include_package_data=True, | |
18 zip_safe=False, | |
19 install_requires=[ | |
20 # -*- Extra requirements: -*- | |
21 'WebOb', | |
22 'Paste', | |
23 'PasteScript', | |
24 ], | |
25 entry_points=""" | |
26 # -*- Entry points: -*- | |
27 [paste.app_factory] | |
28 main = uploader.factory:factory | |
29 """, | |
30 ) | |
31 |