Mercurial > hg > uploader
view setup.py @ 1:a02c4fcd7001
* optionally require auth
* give a real version
author | k0s <k0scist@gmail.com> |
---|---|
date | Sun, 27 Dec 2009 13:29:27 -0500 |
parents | 827f7577f940 |
children | 0b5fce452087 |
line wrap: on
line source
from setuptools import setup, find_packages import sys, os version = "0.1" setup(name='uploader', version=version, description="a file uploader app", long_description=""" """, classifiers=[], # Get strings from http://www.python.org/pypi?%3Aaction=list_classifiers author='Ethan Jucovy', author_email='', url='', license="", packages=find_packages(exclude=['ez_setup', 'examples', 'tests']), include_package_data=True, zip_safe=False, install_requires=[ # -*- Extra requirements: -*- 'WebOb', 'Paste', 'PasteScript', ], entry_points=""" # -*- Entry points: -*- [paste.app_factory] main = uploader.factory:factory """, )