Mercurial > hg > simpypi
diff setup.py @ 0:93e830409685
initial stub commit
author | Jeff Hammel <jhammel@mozilla.com> |
---|---|
date | Mon, 27 Feb 2012 15:42:12 -0800 |
parents | |
children | 15c7171941ea |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/setup.py Mon Feb 27 15:42:12 2012 -0800 @@ -0,0 +1,36 @@ +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="", + packages=find_packages(exclude=['ez_setup', 'examples', 'tests']), + include_package_data=True, + zip_safe=False, + install_requires=[ + # -*- Extra requirements: -*- + 'WebOb', + 'Paste', + 'PasteScript', + 'genshi', + 'tempita' + ], + entry_points=""" + # -*- Entry points: -*- + [paste.app_factory] + simpypi = simpypi.factory:factory + """, + ) +