Aman Sharma
commited on
Commit
·
e5bb136
1
Parent(s):
105870d
gradio demo added
Browse files
setup.py
ADDED
@@ -0,0 +1,22 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
from setuptools import setup, find_packages
|
2 |
+
|
3 |
+
setup(
|
4 |
+
name="sketch_nn",
|
5 |
+
version="0.1",
|
6 |
+
packages=find_packages(),
|
7 |
+
install_requires=[
|
8 |
+
"opencv-python",
|
9 |
+
"numpy",
|
10 |
+
"pytesseract",
|
11 |
+
"torch",
|
12 |
+
"gradio",
|
13 |
+
"fastapi",
|
14 |
+
"uvicorn",
|
15 |
+
],
|
16 |
+
author="Aman Sharma",
|
17 |
+
author_email="amananytime07@gmail.com",
|
18 |
+
description="A tool to generate PyTorch neural network code from flowchart images",
|
19 |
+
long_description=open("README.md").read(),
|
20 |
+
long_description_content_type="text/markdown",
|
21 |
+
url="https://github.com/yourusername/sketch_nn",
|
22 |
+
)
|