mirror of
https://github.com/serengil/deepface.git
synced 2025-06-06 19:45:21 +00:00
single requirements
This commit is contained in:
parent
a010c4188f
commit
fb52de282d
@ -4,15 +4,11 @@ gdown>=3.10.1
|
|||||||
tqdm>=4.30.0
|
tqdm>=4.30.0
|
||||||
Pillow>=5.2.0
|
Pillow>=5.2.0
|
||||||
opencv-python>=4.5.5.64
|
opencv-python>=4.5.5.64
|
||||||
opencv-contrib-python>=4.3.0.36
|
|
||||||
tensorflow>=1.9.0
|
tensorflow>=1.9.0
|
||||||
keras>=2.2.0
|
keras>=2.2.0
|
||||||
Flask>=1.1.2
|
Flask>=1.1.2
|
||||||
mtcnn>=0.1.0
|
mtcnn>=0.1.0
|
||||||
lightgbm>=2.3.1
|
|
||||||
dlib>=19.20.0
|
|
||||||
retina-face>=0.0.1
|
retina-face>=0.0.1
|
||||||
mediapipe>=0.8.7.3
|
|
||||||
fire>=0.4.0
|
fire>=0.4.0
|
||||||
gunicorn>=20.1.0
|
gunicorn>=20.1.0
|
||||||
Deprecated>=1.2.13
|
Deprecated>=1.2.13
|
3
requirements_additional.txt
Normal file
3
requirements_additional.txt
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
opencv-contrib-python>=4.3.0.36
|
||||||
|
mediapipe>=0.8.7.3
|
||||||
|
dlib>=19.20.0
|
20
setup.py
20
setup.py
@ -3,6 +3,9 @@ import setuptools
|
|||||||
with open("README.md", "r", encoding="utf-8") as fh:
|
with open("README.md", "r", encoding="utf-8") as fh:
|
||||||
long_description = fh.read()
|
long_description = fh.read()
|
||||||
|
|
||||||
|
with open("requirements.txt", "r", encoding="utf-8") as f:
|
||||||
|
requirements = f.read().split("\n")
|
||||||
|
|
||||||
setuptools.setup(
|
setuptools.setup(
|
||||||
name="deepface",
|
name="deepface",
|
||||||
version="0.0.79",
|
version="0.0.79",
|
||||||
@ -22,20 +25,5 @@ setuptools.setup(
|
|||||||
"console_scripts": ["deepface = deepface.DeepFace:cli"],
|
"console_scripts": ["deepface = deepface.DeepFace:cli"],
|
||||||
},
|
},
|
||||||
python_requires=">=3.5.5",
|
python_requires=">=3.5.5",
|
||||||
install_requires=[
|
install_requires=requirements,
|
||||||
"numpy>=1.14.0",
|
|
||||||
"pandas>=0.23.4",
|
|
||||||
"tqdm>=4.30.0",
|
|
||||||
"gdown>=3.10.1",
|
|
||||||
"Pillow>=5.2.0",
|
|
||||||
"opencv-python>=4.5.5.64",
|
|
||||||
"tensorflow>=1.9.0",
|
|
||||||
"keras>=2.2.0",
|
|
||||||
"Flask>=1.1.2",
|
|
||||||
"mtcnn>=0.1.0",
|
|
||||||
"retina-face>=0.0.1",
|
|
||||||
"fire>=0.4.0",
|
|
||||||
"gunicorn>=20.1.0",
|
|
||||||
"Deprecated>=1.2.13",
|
|
||||||
],
|
|
||||||
)
|
)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user