Mercurial > hg > MakeItSo
view makeitso/python_package/setup.py @ 89:e055447376ab
fixed double read problem
author | Jeff Hammel <jhammel@mozilla.com> |
---|---|
date | Mon, 10 Jan 2011 19:58:21 -0800 |
parents | 0300ed78d630 |
children | ad5fd3eb6674 |
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='{{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: -*- """, )