Mercurial > hg > MakeItSo
comparison makeitso/python_package/setup.py @ 102:ad5fd3eb6674
template fixes....not the best, but will do
author | Jeff Hammel <jhammel@mozilla.com> |
---|---|
date | Tue, 11 Jan 2011 16:30:52 -0800 |
parents | 0300ed78d630 |
children | 697568ba4a22 |
comparison
equal
deleted
inserted
replaced
101:80a57bf2b7f4 | 102:ad5fd3eb6674 |
---|---|
1 import os | |
1 from setuptools import setup, find_packages | 2 from setuptools import setup, find_packages |
2 | 3 |
3 try: | 4 try: |
4 description = file('README.txt').read() | 5 here = os.path.dirname(os.path.abspath(__file__)) |
6 description = file(os.path.join(here, 'README.txt')).read() | |
5 except IOError: | 7 except IOError: |
6 description = '' | 8 description = '' |
7 | 9 |
8 version = "0.0" | 10 version = "0.0" |
9 | 11 |
13 long_description=description, | 15 long_description=description, |
14 classifiers=[], # Get strings from http://www.python.org/pypi?%3Aaction=list_classifiers | 16 classifiers=[], # Get strings from http://www.python.org/pypi?%3Aaction=list_classifiers |
15 author='{{author}}', | 17 author='{{author}}', |
16 author_email='{{email}}', | 18 author_email='{{email}}', |
17 url='{{url}}', | 19 url='{{url}}', |
18 license='{{license}}' | 20 license='', |
19 packages=find_packages(exclude=['ez_setup', 'examples', 'tests']), | 21 packages=find_packages(exclude=['ez_setup', 'examples', 'tests']), |
20 include_package_data=True, | 22 include_package_data=True, |
21 zip_safe=False, | 23 zip_safe=False, |
22 install_requires=[ | 24 install_requires=[ |
23 # -*- Extra requirements: -*- | 25 # -*- Extra requirements: -*- |