optimaldesign / setup.py
Ricdeq's picture
req change
cfe0fae
raw
history blame contribute delete
363 Bytes
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',
],
},
)