Mercurial > hg > MakeItSo
comparison setup.py @ 232:66ca1a67a76c
one more time
| author | Jeff Hammel <k0scist@gmail.com> |
|---|---|
| date | Mon, 14 Dec 2015 14:16:39 -0800 |
| parents | 2bc1dd66dd80 |
| children | ceb5c8ee5bbe |
comparison
equal
deleted
inserted
replaced
| 231:2bc1dd66dd80 | 232:66ca1a67a76c |
|---|---|
| 1 """ | 1 """ |
| 2 setup.py script for MakeItSo | 2 setup.py script for MakeItSo |
| 3 | |
| 4 For packaging info please see: | |
| 5 https://docs.python.org/2/distutils/sourcedist.html | |
| 3 """ | 6 """ |
| 4 | 7 |
| 5 import os | 8 import os |
| 6 from setuptools import setup | 9 from setuptools import setup |
| 7 | 10 |
| 9 here = os.path.dirname(os.path.abspath(__file__)) | 12 here = os.path.dirname(os.path.abspath(__file__)) |
| 10 description = file(os.path.join(here, 'README.txt')).read() | 13 description = file(os.path.join(here, 'README.txt')).read() |
| 11 except IOError: | 14 except IOError: |
| 12 description = '' | 15 description = '' |
| 13 | 16 |
| 14 version = '0.3.19' | 17 version = '0.3.20' |
| 15 | 18 |
| 16 setup(name='MakeItSo', | 19 setup(name='MakeItSo', |
| 17 version=version, | 20 version=version, |
| 18 description='filesystem template interpreter', | 21 description='filesystem template interpreter', |
| 19 long_description=description, | 22 long_description=description, |
