Skip to content

Commit

Permalink
updated setup.py for py3 (see issue #3)
Browse files Browse the repository at this point in the history
  • Loading branch information
mromanello committed Feb 14, 2019
1 parent 494cb8b commit 043d413
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@
exec(open('{0}/__version__.py'.format(NAME)).read())
VERSION = str_version

# TODO: update for python3

def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()

Expand All @@ -26,10 +28,12 @@ def read(fname):
}
, classifiers=[
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.6',
'Operating System :: POSIX'
]
, license='GPL v3'
, install_requires=['pyCTS', 'surf>=1.1.9', 'docopt']
# TODO: find a way to install Thibault's fork of surf from here
# so that it works when installing by pip.
, install_requires=['pyCTS', 'surf>=1.2.0', 'docopt']
, long_description=read('README.md')
)

0 comments on commit 043d413

Please sign in to comment.