File size: 440 Bytes
99bbd9b
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import setup, find_packages

setup(
    name='talk2sql',
    version='0.1.0',
    packages=find_packages(),
    install_requires=[
        'fastapi',
        'uvicorn',
        'streamlit',
        'pydantic',
        'SQLAlchemy',
        'pymysql',
        'python-dotenv',
        'langchain',
        'langchain_community',
        'langchain_groq',
        'langgraph',
        'beautifulsoup4',
        'lxml'
    ],
)