Mercurial > hg > uploader
annotate setup.py @ 14:916d45d4f921
dont just die on questionable filenames
author | Jeff Hammel <jhammel@mozilla.com> |
---|---|
date | Tue, 12 Jul 2011 09:08:18 -0700 |
parents | b8c636b0b567 |
children | 4da97e040145 |
rev | line source |
---|---|
0 | 1 from setuptools import setup, find_packages |
2 import sys, os | |
3 | |
14
916d45d4f921
dont just die on questionable filenames
Jeff Hammel <jhammel@mozilla.com>
parents:
13
diff
changeset
|
4 version = "0.2.5" |
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 |