Skip to content

Commit b9bc00b

Browse files
author
nthaihoc
committed
setup project
1 parent 65e243f commit b9bc00b

File tree

2 files changed

+46
-0
lines changed

2 files changed

+46
-0
lines changed

requirements.txt

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
tensorflow
2+
pandas
3+
dvc
4+
mlflow
5+
notebook
6+
numpy
7+
matplotlib
8+
seaborn
9+
python-box==6.0.2
10+
pyYAML
11+
tqdm
12+
ensure==1.0.2
13+
joblib
14+
types-PyYAML
15+
scipy
16+
Flask
17+
Flask-Cors
18+
-e .

setup.py

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
import setuptools
2+
3+
with open("README.md", "r", encoding="utf-8") as f:
4+
long_description = f.read()
5+
6+
7+
__version__ = "0.0.0"
8+
9+
REPO_NAME = "end-to-end-mlops"
10+
AUTHOR_NAME = "nthaihoc"
11+
SRC_REPO = "ccs"
12+
AUTHOR_EMAIL = "[email protected]"
13+
14+
setuptools.setup(
15+
name=SRC_REPO,
16+
version=__version__,
17+
author=AUTHOR_NAME,
18+
author_email=AUTHOR_EMAIL,
19+
description="A project end-to-end using MLOPs",
20+
long_description=long_description,
21+
long_description_content_type="text/markdown",
22+
url=f"https://github.com/{AUTHOR_NAME}/{REPO_NAME}/",
23+
project_url={
24+
"Bug Tracker": f"https://github.com/{AUTHOR_NAME}/{REPO_NAME}/issues"
25+
},
26+
package_dir={"": "src"},
27+
packages=setuptools.find_packages(where="src")
28+
)

0 commit comments

Comments
 (0)