Update setup.py with minimal python version

This commit is contained in:
Rupus Reinefjord 2020-08-08 18:50:14 +02:00
parent 70b8ced056
commit 5635fc7261

View file

@ -21,5 +21,10 @@ setuptools.setup(
"Environment :: Console", "Environment :: Console",
"Intended Audience :: End Users/Desktop", "Intended Audience :: End Users/Desktop",
"Topic :: Utilities", "Topic :: Utilities",
] "Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8"
],
python_requires='>=3.6'
) )