-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (32 loc) · 903 Bytes
/
pyproject.toml
File metadata and controls
36 lines (32 loc) · 903 Bytes
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
[project]
name = "course-gen-codex"
version = "0.1.0"
description = "Archetype-driven assignment generation MVP for engineering projects."
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"fastapi>=0.136.1,<0.137.0",
"uvicorn>=0.46.0,<0.47.0",
"httpx>=0.28.1,<0.29.0",
"openai>=1.79.0,<2.0.0",
"langgraph>=0.6.0,<1.0.0",
"sqlalchemy>=2.0.30,<2.1.0",
"psycopg[binary]>=3.2.0,<4.0.0",
"alembic>=1.13.0,<2.0.0",
"bcrypt>=4.0.0,<6.0.0",
"email-validator>=2.2.0,<3.0.0",
"jinja2>=3.0.0,<4.0.0",
"datasets>=2.14",
]
[project.optional-dependencies]
test = [
"pytest>=8.0.0,<9.0.0",
"testcontainers[postgres]>=4.7.0,<5.0.0",
]
[build-system]
requires = ["setuptools>=68.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["app", "app.api", "app.domain", "app.services", "app.storage", "scripts"]
[tool.pytest.ini_options]
pythonpath = ["."]