Skip to content

Commit 6a8a3d6

Browse files
committed
requirements added and setup done
1 parent e96c32c commit 6a8a3d6

File tree

2 files changed

+43
-1
lines changed

2 files changed

+43
-1
lines changed

requirements.txt

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

setup.py

Lines changed: 29 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,29 @@
1-
import os
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 = "Image-Classification"
10+
AUTHOR_USER_NAME = "saibattula93"
11+
SRC_REPO = "ImageClassification"
12+
AUTHOR_EMAIL = "saidurgaprasadbattula@gmail.com"
13+
14+
15+
setuptools.setup(
16+
name=SRC_REPO,
17+
version=__version__,
18+
author=AUTHOR_USER_NAME,
19+
author_email=AUTHOR_EMAIL,
20+
description="A small python package for CNN app",
21+
long_description=long_description,
22+
long_description_content="text/markdown",
23+
url=f"https://github.com/{AUTHOR_USER_NAME}/{REPO_NAME}",
24+
project_urls={
25+
"Bug Tracker": f"https://github.com/{AUTHOR_USER_NAME}/{REPO_NAME}/issues",
26+
},
27+
package_dir={"":"src"},
28+
packages=setuptools.find_packages(where="src")
29+
)

0 commit comments

Comments
 (0)