comparison makeitso/python_module/setup.py @ 245:2eb0a8dc2303

python 3.5
author Jeff Hammel <k0scist@gmail.com>
date Mon, 20 Feb 2017 10:13:32 -0800
parents ee29d37198a3
children
comparison
equal deleted inserted replaced
244:fb70a9c72ec2 245:2eb0a8dc2303
1 import os 1 import os
2 from setuptools import setup 2 from setuptools import setup
3 3
4 try: 4 try:
5 here = os.path.dirname(os.path.abspath(__file__)) 5 here = os.path.dirname(os.path.abspath(__file__))
6 description = file(os.path.join(here, 'README.txt')).read() 6 description = open(os.path.join(here, 'README.txt')).read()
7 except IOError: 7 except IOError:
8 description = None 8 description = None
9 9
10 version = '0.0' 10 version = '0.0'
11 11