Mercurial > hg > MakeItSo
comparison setup.py @ 212:cffc729926b9
correct text and bump version
author | Jeff Hammel <k0scist@gmail.com> |
---|---|
date | Thu, 03 Dec 2015 11:19:00 -0800 |
parents | 1203898cd195 |
children | d61783ce9fd5 |
comparison
equal
deleted
inserted
replaced
211:1203898cd195 | 212:cffc729926b9 |
---|---|
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.3.5' | 10 version = '0.3.6' |
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='k0scist@gmail.com', | 19 author_email='k0scist@gmail.com', |
20 url='http://k0s.org/', | 20 url='http://k0s.org/hg/MakeItSo', |
21 license='MPL', | 21 license='MPL', |
22 packages=['makeitso'], | 22 packages=['makeitso'], |
23 include_package_data=True, | 23 include_package_data=True, |
24 package_data={'makeitso': ['python_package/*']}, | 24 package_data={'makeitso': ['python_package/*']}, |
25 zip_safe=False, | 25 zip_safe=False, |