File tree 2 files changed +43
-1
lines changed
2 files changed +43
-1
lines changed Original file line number Diff line number Diff line change
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 .
Original file line number Diff line number Diff line change 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
+ )
You can’t perform that action at this time.
0 commit comments