Mercurial > hg > uploader
annotate setup.py @ 23:1589a4ed8e44 default tip
py3
author | Jeff Hammel <k0scist@gmail.com> |
---|---|
date | Tue, 03 Nov 2020 10:11:45 -0800 |
parents | 183224756ded |
children |
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=[ | |
23 | 19 'WebOb', |
0 | 20 'Paste', |
21 'PasteScript', | |
22 ], | |
23 entry_points=""" | |
24 # -*- Entry points: -*- | |
25 [paste.app_factory] | |
26 main = uploader.factory:factory | |
27 """, | |
23 | 28 ) |