# HG changeset patch # User Jeff Hammel # Date 1294548881 28800 # Node ID 0300ed78d6309ea64ca73ed8c370a787d35436a3 # Parent 8c326f764cfec0d524d1e1b94a8f5ad76dbb0da6 add a setup.py template diff -r 8c326f764cfe -r 0300ed78d630 makeitso/python_package/setup.py --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/makeitso/python_package/setup.py Sat Jan 08 20:54:41 2011 -0800 @@ -0,0 +1,29 @@ +from setuptools import setup, find_packages + +try: + description = file('README.txt').read() +except IOError: + description = '' + +version = "0.0" + +setup(name='{{project}}', + version=version, + description="{{description}}", + long_description=description, + classifiers=[], # Get strings from http://www.python.org/pypi?%3Aaction=list_classifiers + author='{{author}}', + author_email='{{email}}', + url='{{url}}', + license='{{license}}' + packages=find_packages(exclude=['ez_setup', 'examples', 'tests']), + include_package_data=True, + zip_safe=False, + install_requires=[ + # -*- Extra requirements: -*- + ], + entry_points=""" + # -*- Entry points: -*- + """, + ) +