Fixed required packages
Signed-off-by: Jim Martens <github@2martens.de>
This commit is contained in:
parent
523a9c8e71
commit
ab24c96515
|
@ -1 +1,2 @@
|
|||
cython
|
||||
git+https://github.com/philferriere/cocoapi.git#egg=pycocotools&subdirectory=PythonAPI
|
||||
|
|
8
setup.py
8
setup.py
|
@ -15,7 +15,8 @@
|
|||
# limitations under the License.
|
||||
|
||||
"""setup file for masterthesis"""
|
||||
from setuptools import find_packages, setup
|
||||
from setuptools import find_packages
|
||||
from setuptools import setup
|
||||
|
||||
with open("README.md", "rb") as f:
|
||||
long_desc = f.read().decode()
|
||||
|
@ -35,9 +36,8 @@ setup(
|
|||
package_data={},
|
||||
entry_points={},
|
||||
python_requires="~=3.6",
|
||||
setup_requires=['cython'],
|
||||
install_requires=["tensorflow-gpu", "Pillow", "h5py", "numpy", 'opencv-python', 'scikit-learn', 'tqdm',
|
||||
'beautifulsoup4'],
|
||||
install_requires=["tensorflow-gpu", "Pillow", "h5py", "numpy", "opencv-python", "scikit-learn", "tqdm",
|
||||
"beautifulsoup4", "matplotlib"],
|
||||
license="Apache License 2.0",
|
||||
classifiers=[
|
||||
"Operating System :: OS Independent",
|
||||
|
|
Loading…
Reference in New Issue