-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
62 lines (57 loc) · 1.35 KB
/
Copy pathpyproject.toml
File metadata and controls
62 lines (57 loc) · 1.35 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "pyezchess"
version = "0.1.0"
description = "AI Chess Instructor — FastAPI + LangGraph + SQLAlchemy async"
readme = "README.md"
requires-python = ">=3.14"
dependencies = [
"fastapi[standard]>=0.115.0",
"uvicorn[standard]>=0.34.0",
"sqlalchemy[asyncio]>=2.0.36",
"asyncpg>=0.30.0",
"psycopg2-binary>=2.9.0",
"alembic>=1.14.0",
"pydantic>=2.10.0",
"pydantic-settings>=2.7.0",
"langgraph>=0.2.0",
"langchain-core>=0.3.0",
"langchain-anthropic>=0.3.0",
"langchain-google-genai>=4.0.0",
"langchain-openai>=0.3.0",
"httpx>=0.28.0",
"python-dotenv>=1.0.0",
"bcrypt>=4.0.0",
"uuid6>=2024.0.0",
"typer>=0.15.0",
"typing-extensions>=4.12.0",
"chess>=1.10.0",
"psycopg[binary,pool]>=3.3.4",
"langgraph-checkpoint-postgres>=3.1.0",
"dbos>=2.26.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
"pytest-asyncio>=0.25.0",
"ruff>=0.11.0",
"pyright>=1.1.400",
"remote-pdb>=2.1.0",
]
[tool.hatch.build.targets.wheel]
packages = [
"src/api",
"src/cli",
"src/core",
"src/shared",
]
[tool.pyright]
include = ["src"]
exclude = ["src/tests"]
pythonVersion = "3.14"
typeCheckingMode = "strict"
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["src/tests"]