-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
96 lines (87 loc) · 2.13 KB
/
pyproject.toml
File metadata and controls
96 lines (87 loc) · 2.13 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
[project]
name = "agentic-expense-tracker"
version = "0.1.0"
description = "Multi-agent AI expense tracking system with Next.js frontend"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"fastapi>=0.104.0",
"langgraph>=0.2.0",
"langchain>=0.2.0",
"langchain-openai>=0.1.0",
"langchain-community>=0.2.0",
"uvicorn[standard]>=0.24.0",
"pandas>=2.1.0",
"numpy>=1.24.0",
"scikit-learn>=1.3.0",
"plotly>=5.17.0",
"pydantic[email]>=2.5.0",
"python-multipart>=0.0.6",
"python-jose[cryptography]>=3.3.0",
"PyJWT>=2.8.0",
"passlib[bcrypt]>=1.7.4",
"bcrypt>=4.1.0",
"python-dotenv>=1.0.0",
"httpx>=0.25.0",
"joblib>=1.3.0",
"openai>=1.0.0",
"asyncpg>=0.29.0",
"psycopg2-binary>=2.9.0",
"cryptography>=41.0.0",
"langchain-groq>=0.3.7",
"langchain-core>=0.3.74",
"pydantic-settings>=2.10.1",
"langsmith>=0.1.0",
"langgraph-cli[inmem]>=0.4.0",
"reportlab>=4.4.3",
"email-validator>=2.2.0",
"supabase>=2.22.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.4.0",
"pytest-asyncio>=0.21.0",
"pytest-cov>=4.1.0",
"black>=23.9.0",
"ruff>=0.1.0",
"isort>=5.12.0",
"mypy>=1.6.0",
"pre-commit>=3.5.0"
]
[project.scripts]
expense-tracker-api = "src.api.main:app"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src"]
[tool.uv]
dev-dependencies = [
"pytest>=7.4.0",
"pytest-asyncio>=0.21.0",
"black>=23.9.0",
"ruff>=0.1.0",
"mypy>=1.6.0",
]
[tool.black]
line-length = 100
target-version = ['py312']
[tool.isort]
profile = "black"
line_length = 100
[tool.mypy]
python_version = "3.12"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = true
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py", "*_test.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
addopts = "-v --tb=short --strict-markers"
markers = [
"slow: marks tests as slow (deselect with '-m \"not slow\"')",
"integration: marks tests as integration tests",
"unit: marks tests as unit tests"
]