-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (28 loc) · 875 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
from setuptools import setup
with open("README.md", "r", encoding="utf-8") as f:
long_description = f.read()
setup(
name="src",
version="0.0.1",
author="Dipesh Silwal",
description="A small package for Which Bollywood Celebrity You look like? Deep Learning Project",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/dipesg/Which_Bollywood_Celebrity_You_Look_Like",
author_email="[email protected]",
packages=["src"],
python_requires=">=3.7",
install_requires=[
'mtcnn==0.1.0',
'tensorflow-cpu==2.1.0',
'keras',
'keras-vggface==0.6',
'keras_applications==1.0.8',
'opencv-python-headless==4.2.0.32',
'PyYAML',
'tqdm',
'scikit-learn',
'streamlit',
'bing-image-downloader'
]
)