WebCrawler / setup.py
Carlos Gonzalez
Add application file
b1f90a5
raw
history blame contribute delete
205 Bytes
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",
],
)