comparison setup.py @ 182:a4a665aa8569

py35
author Jeff Hammel <k0scist@gmail.com>
date Sun, 19 Feb 2017 21:00:59 -0800
parents f63194f81f7d
children ae4e36f2c81a
comparison
equal deleted inserted replaced
181:4f474ceb9beb 182:a4a665aa8569
46 from distutils.core import setup 46 from distutils.core import setup
47 kw['requires'] = dependencies 47 kw['requires'] = dependencies
48 48
49 try: 49 try:
50 here = os.path.dirname(os.path.abspath(__file__)) 50 here = os.path.dirname(os.path.abspath(__file__))
51 description = file(os.path.join(here, 'README.txt')).read() 51 description = open(os.path.join(here, 'README.txt')).read()
52 except IOError: 52 except IOError:
53 description = '' 53 description = ''
54 54
55 55
56 setup(name='numerics', 56 setup(name='numerics',