Mercurial > hg > MakeItSo
comparison 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 | 363f6625d036 |
children | 67b50417b8d1 |
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 version = '0.0' | 4 try: |
5 here = os.path.dirname(os.path.abspath(__file__)) | |
6 description = file(os.path.join(here, 'README.txt')).read() | |
7 except IOError: | |
8 description = '' | |
9 | |
10 version = '0.1' | |
4 | 11 |
5 setup(name='MakeItSo', | 12 setup(name='MakeItSo', |
6 version=version, | 13 version=version, |
7 description='filesystem template interpreter', | 14 description='filesystem template interpreter', |
8 long_description="""\ | 15 long_description=description, |
9 """, | |
10 classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers | 16 classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers |
11 keywords='', | 17 keywords='', |
12 author='Jeff Hammel', | 18 author='Jeff Hammel', |
13 author_email='jhammel@mozilla.com', | 19 author_email='jhammel@mozilla.com', |
14 url='http://k0s.org/', | 20 url='http://k0s.org/', |
23 ], | 29 ], |
24 entry_points=""" | 30 entry_points=""" |
25 # -*- Entry points: -*- | 31 # -*- Entry points: -*- |
26 [console_scripts] | 32 [console_scripts] |
27 makeitso = makeitso.makeitso:main | 33 makeitso = makeitso.makeitso:main |
34 make-python-package = makeitso.python:main | |
28 """, | 35 """, |
29 ) | 36 ) |