Spaces:
Runtime error
Runtime error
setup and requirements
Browse files- requirements.txt +2 -0
- setup.py +16 -0
requirements.txt
ADDED
|
@@ -0,0 +1,2 @@
|
|
|
|
|
|
|
|
|
|
| 1 |
+
gradio
|
| 2 |
+
torch
|
setup.py
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
from setuptools import setup, find_packages
|
| 2 |
+
|
| 3 |
+
setup(
|
| 4 |
+
name='blueprint_analyzer',
|
| 5 |
+
version='0.1',
|
| 6 |
+
packages=find_packages(),
|
| 7 |
+
install_requires=[
|
| 8 |
+
'gradio',
|
| 9 |
+
'torch',
|
| 10 |
+
],
|
| 11 |
+
entry_points={
|
| 12 |
+
'console_scripts': [
|
| 13 |
+
'analyze_blueprint=blueprint_analyzer.analyze_blueprint:main',
|
| 14 |
+
],
|
| 15 |
+
},
|
| 16 |
+
)
|