optimaldesign / setup.py
Ricdeq's picture
setup and requirements
fdebbb0
raw
history blame
328 Bytes
from setuptools import setup, find_packages
setup(
name='blueprint_analyzer',
version='0.1',
packages=find_packages(),
install_requires=[
'gradio',
'torch',
],
entry_points={
'console_scripts': [
'analyze_blueprint=blueprint_analyzer.analyze_blueprint:main',
],
},
)