comparison setup.py @ 229:06a6abb83c58

one more time
author Jeff Hammel <k0scist@gmail.com>
date Mon, 14 Dec 2015 14:10:25 -0800
parents a0a86aa9a031
children ad31b05185ef
comparison
equal deleted inserted replaced
228:a0a86aa9a031 229:06a6abb83c58
1 """
2 setup.py script for MakeItSo
3 """
4
1 import os 5 import os
2 from setuptools import setup 6 from setuptools import setup
3 7
4 try: 8 try:
5 here = os.path.dirname(os.path.abspath(__file__)) 9 here = os.path.dirname(os.path.abspath(__file__))
6 description = file(os.path.join(here, 'README.txt')).read() 10 description = file(os.path.join(here, 'README.txt')).read()
7 except IOError: 11 except IOError:
8 description = '' 12 description = ''
9 13
10 version = '0.3.16' 14 version = '0.3.17'
11 15
12 setup(name='MakeItSo', 16 setup(name='MakeItSo',
13 version=version, 17 version=version,
14 description='filesystem template interpreter', 18 description='filesystem template interpreter',
15 long_description=description, 19 long_description=description,