configure python_requires and py3 only trove (#32)

This commit is contained in:
Thomas Grainger
2017-06-04 00:08:46 +01:00
committed by Samuel Colvin
parent 12820bad15
commit 3544c351ec
+2
View File
@@ -18,6 +18,7 @@ setup(
'Environment :: Console',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.6',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
@@ -34,5 +35,6 @@ setup(
url='https://github.com/samuelcolvin/pydantic',
license='MIT',
packages=['pydantic'],
python_requires='>=3.6',
zip_safe=True,
)