Spaces:
Runtime error
Runtime error
| from setuptools import setup, find_packages | |
| setup( | |
| name='blueprint_analyzer', | |
| version='0.1', | |
| packages=find_packages(), | |
| install_requires=[ | |
| 'gradio', | |
| 'torch', | |
| 'torchvision', | |
| 'Pillow', | |
| ], | |
| entry_points={ | |
| 'console_scripts': [ | |
| 'analyze_blueprint=blueprint_analyzer.analyze_blueprint:main', | |
| ], | |
| }, | |
| ) | |