Skip to content

Commit

Permalink
Merge pull request #263 from jGaboardi/update_setup
Browse files Browse the repository at this point in the history
updating supported python versions in setup.py
  • Loading branch information
jGaboardi committed May 4, 2019
2 parents 071bad1 + 09bdd46 commit 5e97b2f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,16 +73,16 @@ def setup_package():
'Topic :: Scientific/Engineering :: GIS',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6'],
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7'],
license='3-Clause BSD',
packages=[package],
py_modules=[package],
install_requires=install_reqs,
extras_require=extras_reqs,
zip_safe=False,
cmdclass = {'build.py':build_py},
python_requires='>3.4')
python_requires='>3.5')


if __name__ == '__main__':
Expand Down

0 comments on commit 5e97b2f

Please sign in to comment.