File size: 205 Bytes
b1f90a5
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
from setuptools import setup, find_packages

setup(
    name="web-ui",
    version="0.1.0",
    packages=find_packages(),
    install_requires=[
        "gradio==5.27.0",
        "python-dotenv",
    ],
)