Mercurial > hg > MakeItSo
comparison setup.py @ 172:740c1f2315f2
setup.py
author | Jeff Hammel <jhammel@mozilla.com> |
---|---|
date | Wed, 11 Dec 2013 04:56:53 -0800 |
parents | 1b2ccecfff77 |
children | ceb8c8042e48 |
comparison
equal
deleted
inserted
replaced
171:8f5bfd2e5a35 | 172:740c1f2315f2 |
---|---|
5 here = os.path.dirname(os.path.abspath(__file__)) | 5 here = os.path.dirname(os.path.abspath(__file__)) |
6 description = file(os.path.join(here, 'README.txt')).read() | 6 description = file(os.path.join(here, 'README.txt')).read() |
7 except IOError: | 7 except IOError: |
8 description = '' | 8 description = '' |
9 | 9 |
10 version = '0.2.8' | 10 version = '0.2.9' |
11 | 11 |
12 setup(name='MakeItSo', | 12 setup(name='MakeItSo', |
13 version=version, | 13 version=version, |
14 description='filesystem template interpreter', | 14 description='filesystem template interpreter', |
15 long_description=description, | 15 long_description=description, |
16 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 |
17 keywords='templates', | 17 keywords='templates', |
18 author='Jeff Hammel', | 18 author='Jeff Hammel', |
19 author_email='jhammel@mozilla.com', | 19 author_email='k0scist@gmail.com' |
20 url='http://k0s.org/', | 20 url='http://k0s.org/', |
21 license='MPL', | 21 license='MPL', |
22 packages=find_packages(exclude=['ez_setup', 'examples', 'tests']), | 22 packages=['makeitso'], |
23 include_package_data=True, | 23 include_package_data=True, |
24 zip_safe=False, | 24 zip_safe=False, |
25 install_requires=[ | 25 install_requires=[ |
26 # -*- Extra requirements: -*- | 26 # -*- Extra requirements: -*- |
27 'tempita >= 0.5.1', | 27 'tempita >= 0.5.1', |