comparison setup.py @ 87:5a624b3c1007 default tip

py35
author Jeff Hammel <k0scist@gmail.com>
date Sun, 19 Feb 2017 17:50:00 -0800
parents 4446cba4cee6
children
comparison
equal deleted inserted replaced
86:33af6dac25de 87:5a624b3c1007
23 from distutils.core import setup 23 from distutils.core import setup
24 kw['requires'] = dependencies 24 kw['requires'] = dependencies
25 25
26 try: 26 try:
27 here = os.path.dirname(os.path.abspath(__file__)) 27 here = os.path.dirname(os.path.abspath(__file__))
28 description = file(os.path.join(here, 'README.txt')).read() 28 description = open(os.path.join(here, 'README.txt')).read()
29 except IOError: 29 except IOError:
30 description = '' 30 description = ''
31 31
32 setup(name='PaInt', 32 setup(name='PaInt',
33 version=version, 33 version=version,