Mercurial > hg > MakeItSo
comparison setup.py @ 131:4922bee3d080
add single module to registered templates
author | Jeff Hammel <jhammel@mozilla.com> |
---|---|
date | Mon, 22 Aug 2011 14:51:26 -0700 |
parents | d9201f911458 |
children | 169e02e190ef |
comparison
equal
deleted
inserted
replaced
130:d9201f911458 | 131:4922bee3d080 |
---|---|
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.3' | 10 version = '0.2.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, |
33 makeitso = makeitso.makeitso:main | 33 makeitso = makeitso.makeitso:main |
34 make-python-package = makeitso.python:main | 34 make-python-package = makeitso.python:main |
35 | 35 |
36 [makeitso.templates] | 36 [makeitso.templates] |
37 python-package = makeitso.python:PythonPackageTemplate | 37 python-package = makeitso.python:PythonPackageTemplate |
38 python-module = makeitso.python:PythonModuleTemplate | |
38 """, | 39 """, |
39 ) | 40 ) |