Mercurial > hg > uploader
annotate setup.py @ 21:183224756ded
reverse order the log for display
author | Jeff Hammel <jhammel@mozilla.com> |
---|---|
date | Mon, 01 Aug 2011 23:53:33 -0700 |
parents | f1142bcce77a |
children | 1589a4ed8e44 |
rev | line source |
---|---|
0 | 1 from setuptools import setup, find_packages |
2 import sys, os | |
3 | |
21
183224756ded
reverse order the log for display
Jeff Hammel <jhammel@mozilla.com>
parents:
20
diff
changeset
|
4 version = "0.2.7" |
0 | 5 |
20
f1142bcce77a
add ability to log uploads
Jeff Hammel <jhammel@mozilla.com>
parents:
19
diff
changeset
|
6 setup(name='UploadView', |
0 | 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 |