Skip to content

Commit

Permalink
Merge pull request #77 from mschmidt87/bug/py_version_setup
Browse files Browse the repository at this point in the history
Add information about supported python version to setup.py
  • Loading branch information
jakobj committed Apr 10, 2018
2 parents cb59d73 + f638477 commit 3df6cdb
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions setup.py
Expand Up @@ -11,6 +11,7 @@
keywords='hdf5 h5py',
url='https://github.com/INM-6/h5py_wrapper',
packages=['h5py_wrapper', 'tests'],
python_requires='>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*',
scripts=['convert_h5file'],
setup_requires=['pytest-runner'],
tests_require=['pytest'],
Expand All @@ -21,7 +22,10 @@
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Utilities',
],
)

0 comments on commit 3df6cdb

Please sign in to comment.