-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
40 lines (38 loc) · 1.1 KB
/
Copy pathsetup.py
File metadata and controls
40 lines (38 loc) · 1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
from setuptools import setup, find_packages
setup(
name="interactive-estimation-system",
version="0.1.0",
packages=find_packages(),
install_requires=[
# Backend dependencies
"fastapi>=0.96.0",
"uvicorn>=0.22.0",
"pydantic>=2.0.0",
"langchain>=0.0.267",
"langchain-core>=0.1.0",
"langchain-openai>=0.0.1",
"langgraph>=0.0.10",
"python-dotenv>=1.0.0",
"openai>=1.0.0",
# Frontend dependencies
"streamlit>=1.23.0",
"requests>=2.30.0",
],
author="Your Name",
author_email="your.email@example.com",
description="An interactive estimation system using FastAPI, Langgraph, and Streamlit",
keywords="estimation, langchain, streamlit, fastapi, langgraph", python_requires=">=3.11",
extras_require={
"test": [
"pytest>=7.0.0",
"pytest-cov>=4.0.0",
"httpx>=0.24.0",
],
"dev": [
"black>=23.0.0",
"isort>=5.12.0",
"flake8>=6.0.0",
"pre-commit>=3.3.3",
],
},
)