setup.py: add python3 classifiers

This commit is contained in:
Alexys Jacob
2018-11-28 23:54:03 +01:00
parent 17a8a9d13d
commit cbd72786dd

View File

@@ -9,4 +9,13 @@ setup(
platforms='any',
packages=find_packages(),
include_package_data=True,
install_requires=[])
install_requires=[],
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
],
)