Mercurial > hg > MakeItSo
annotate 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 |
rev | line source |
---|---|
102
ad5fd3eb6674
template fixes....not the best, but will do
Jeff Hammel <jhammel@mozilla.com>
parents:
80
diff
changeset
|
1 import os |
80 | 2 from setuptools import setup, find_packages |
3 | |
4 try: | |
102
ad5fd3eb6674
template fixes....not the best, but will do
Jeff Hammel <jhammel@mozilla.com>
parents:
80
diff
changeset
|
5 here = os.path.dirname(os.path.abspath(__file__)) |
ad5fd3eb6674
template fixes....not the best, but will do
Jeff Hammel <jhammel@mozilla.com>
parents:
80
diff
changeset
|
6 description = file(os.path.join(here, 'README.txt')).read() |
80 | 7 except IOError: |
8 description = '' | |
9 | |
10 version = "0.0" | |
11 | |
12 setup(name='{{project}}', | |
13 version=version, | |
14 description="{{description}}", | |
15 long_description=description, | |
16 classifiers=[], # Get strings from http://www.python.org/pypi?%3Aaction=list_classifiers | |
17 author='{{author}}', | |
18 author_email='{{email}}', | |
19 url='{{url}}', | |
102
ad5fd3eb6674
template fixes....not the best, but will do
Jeff Hammel <jhammel@mozilla.com>
parents:
80
diff
changeset
|
20 license='', |
80 | 21 packages=find_packages(exclude=['ez_setup', 'examples', 'tests']), |
22 include_package_data=True, | |
23 zip_safe=False, | |
24 install_requires=[ | |
25 # -*- Extra requirements: -*- | |
26 ], | |
27 entry_points=""" | |
28 # -*- Entry points: -*- | |
29 """, | |
30 ) | |
31 |