-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (44 loc) · 1.04 KB
/
pyproject.toml
File metadata and controls
49 lines (44 loc) · 1.04 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
[project]
name = "assist"
version = "0.1.0"
description = "AI-powered basketball assistant for personalized training, gear recommendations, and rule clarifications."
requires-python = ">=3.10"
license = { file = "LICENSE" }
readme = "README.md"
authors = [
{ name = "Yongcheol Shin", email = "yongcheol008@gmail.com" },
]
dependencies = [
"fastapi~=0.128",
"uvicorn[standard]~=0.40",
"langgraph~=1.0",
"langchain-core~=1.2",
"openai~=2.20",
"chromadb~=1.5",
"python-dotenv~=1.2",
"pydantic-settings>=2.12.0",
"pypdf>=5.1.0",
"tenacity>=9.1.4",
"sqlalchemy>=2.0",
"python-jose[cryptography]>=3.3",
"bcrypt>=4.0",
"email-validator>=2.0",
"psycopg2-binary>=2.9.11",
]
[project.optional-dependencies]
dev = [
"ruff"
]
[tool.ruff]
# As per Black standard
line-length = 88
[tool.ruff.lint]
# Select linter rules (E: pycodestyle errors, F: Pyflakes, I: isort)
select = ["E", "F", "I"]
[tool.ruff.format]
quote-style = "double"
[dependency-groups]
dev = [
"httpx>=0.28.1",
"pytest>=9.0.2",
]