Update version metadata (#1451)

* Add python_requires to help pip

* Add Trove classifiers to clarify support on PyPI
This commit is contained in:
Hugo
2019-05-04 00:47:44 +03:00
committed by pzhokhov
parent 86f21ad4b3
commit 8233fe1f16

View File

@@ -45,4 +45,13 @@ setup(name='gym',
'envs/robotics/assets/textures/*.png']
},
tests_require=['pytest', 'mock'],
python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*',
classifiers=[
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
)