Mercurial > hg > simpypi
view setup.py @ 59:26139fb1de98
move to a more appropriate name
author | Jeff Hammel <jhammel@mozilla.com> |
---|---|
date | Thu, 01 Mar 2012 15:39:26 -0800 |
parents | f8ff95180d04 |
children | 8fa30276b3e0 |
line wrap: on
line source
from setuptools import setup, find_packages try: description = file('README.txt').read() except IOError: description = '' version = "0.0" setup(name='simpypi', version=version, description="Simple pypi package", long_description=description, classifiers=[], # Get strings from http://www.python.org/pypi?%3Aaction=list_classifiers author='Jeff Hammel', author_email='jhammel@mozilla.com', url='http://k0s.org/mozilla/hg/simpypi', license="MPL", packages=find_packages(exclude=['ez_setup', 'examples', 'tests']), include_package_data=True, zip_safe=False, install_requires=[ # -*- Extra requirements: -*- 'WebOb', 'FileServer' ], entry_points=""" # -*- Entry points: -*- """, )