Added python 3.8 classifier

This commit is contained in:
Jim Martens 2020-03-28 11:07:42 +01:00
parent a4c195ff29
commit f901943668
1 changed files with 2 additions and 1 deletions

View File

@ -38,7 +38,7 @@ setup(
"console_scripts": ["tm-masterthesis = twomartens.masterthesis.main:main"]
},
python_requires="~=3.6",
install_requires=["tensorflow-gpu", "Pillow", "h5py", "numpy", "opencv-python", "scikit-learn", "tqdm",
install_requires=["tensorflow", "Pillow", "h5py", "numpy", "opencv-python", "scikit-learn", "tqdm",
"beautifulsoup4", "matplotlib", "protobuf", "imutils", "attributedict"],
license="Apache License 2.0",
classifiers=[
@ -52,5 +52,6 @@ setup(
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
],
)