a487466
1
2
3
4
5
6
7
8
9
10
11
12
13
14
from setuptools import setup, find_packages setup( name="t2tSAD", version="0.1", packages=find_packages(), install_requires=[ "streamlit", "fastapi", "uvicorn", "requests", ], )