Mercurial > hg > TextShaper
comparison setup.py @ 56:4576ccc3be76
python 3.5
author | Jeff Hammel <k0scist@gmail.com> |
---|---|
date | Sun, 19 Feb 2017 17:53:30 -0800 |
parents | 3691ffa84a3a |
children | a2bbe406f570 |
comparison
equal
deleted
inserted
replaced
55:4e2190495d50 | 56:4576ccc3be76 |
---|---|
26 from distutils.core import setup | 26 from distutils.core import setup |
27 kw['requires'] = dependencies | 27 kw['requires'] = dependencies |
28 | 28 |
29 try: | 29 try: |
30 here = os.path.dirname(os.path.abspath(__file__)) | 30 here = os.path.dirname(os.path.abspath(__file__)) |
31 description = file(os.path.join(here, 'README.txt')).read() | 31 description = open(os.path.join(here, 'README.txt')).read() |
32 except IOError: | 32 except IOError: |
33 description = '' | 33 description = '' |
34 | 34 |
35 | 35 |
36 setup(name='TextShaper', | 36 setup(name='TextShaper', |