comparison setup.py @ 145:a95e7f218bd2 default tip

python3.5
author Jeff Hammel <k0scist@gmail.com>
date Sun, 19 Feb 2017 20:42:57 -0800
parents af5e83a4763b
children
comparison
equal deleted inserted replaced
144:df5350aee9c3 145:a95e7f218bd2
25 from distutils.core import setup 25 from distutils.core import setup
26 kw['requires'] = dependencies 26 kw['requires'] = dependencies
27 27
28 try: 28 try:
29 here = os.path.dirname(os.path.abspath(__file__)) 29 here = os.path.dirname(os.path.abspath(__file__))
30 description = file(os.path.join(here, 'README.txt')).read() 30 description = open(os.path.join(here, 'README.txt')).read()
31 except IOError: 31 except IOError:
32 description = '' 32 description = ''
33 33
34 34
35 setup(name='configuration', 35 setup(name='configuration',