comparison setup.py @ 200:5a2edca13b36

wip
author Jeff Hammel <k0scist@gmail.com>
date Tue, 24 Jun 2014 11:44:43 -0700
parents bb57bec165b7
children 65684aae6bfe
comparison
equal deleted inserted replaced
199:ee29d37198a3 200:5a2edca13b36
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.3' 10 version = '0.3.4'
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,
39 [makeitso.templates] 39 [makeitso.templates]
40 python-package = makeitso.python:PythonPackageTemplate 40 python-package = makeitso.python:PythonPackageTemplate
41 python-module = makeitso.python:PythonModuleTemplate 41 python-module = makeitso.python:PythonModuleTemplate
42 python-script = makeitso.python:PythonScriptTemplate 42 python-script = makeitso.python:PythonScriptTemplate
43 setup.py = makeitso.python:SetupPy 43 setup.py = makeitso.python:SetupPy
44 python-unittest = makeitso.python:Unittest
44 """, 45 """,
45 ) 46 )