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