Aman Sharma
commited on
Commit
·
8f2a55a
1
Parent(s):
432d775
Update project structure and requirements
Browse files- packages.txt +0 -1
- requirements.txt +2 -1
- setup.py +2 -8
packages.txt
DELETED
@@ -1 +0,0 @@
|
|
1 |
-
.
|
|
|
|
requirements.txt
CHANGED
@@ -2,4 +2,5 @@ gradio
|
|
2 |
torch
|
3 |
opencv-python
|
4 |
numpy
|
5 |
-
pytesseract
|
|
|
|
2 |
torch
|
3 |
opencv-python
|
4 |
numpy
|
5 |
+
pytesseract
|
6 |
+
-e .
|
setup.py
CHANGED
@@ -5,16 +5,10 @@ setup(
|
|
5 |
version="0.1",
|
6 |
packages=find_packages(),
|
7 |
install_requires=[
|
|
|
|
|
8 |
"opencv-python",
|
9 |
"numpy",
|
10 |
"pytesseract",
|
11 |
-
"torch",
|
12 |
-
"gradio",
|
13 |
],
|
14 |
-
author="Aman Sharma",
|
15 |
-
author_email="amananytime07@gmail.com",
|
16 |
-
description="A tool to generate PyTorch neural network code from flowchart images",
|
17 |
-
long_description=open("README.md").read(),
|
18 |
-
long_description_content_type="text/markdown",
|
19 |
-
url="https://github.com/yourusername/sketch_nn",
|
20 |
)
|
|
|
5 |
version="0.1",
|
6 |
packages=find_packages(),
|
7 |
install_requires=[
|
8 |
+
"gradio",
|
9 |
+
"torch",
|
10 |
"opencv-python",
|
11 |
"numpy",
|
12 |
"pytesseract",
|
|
|
|
|
13 |
],
|
|
|
|
|
|
|
|
|
|
|
|
|
14 |
)
|