-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (43 loc) · 868 Bytes
/
pyproject.toml
File metadata and controls
47 lines (43 loc) · 868 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
37
38
39
40
41
42
43
44
45
46
47
[project]
name = "openstudy-api"
version = "0.6.0"
description = "FastAPI backend for the OpenStudy app"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"fastapi>=0.115",
"pydantic>=2.9",
"pydantic-settings>=2.6",
"uvicorn[standard]>=0.32",
"python-multipart>=0.0.12",
"itsdangerous>=2.2",
"argon2-cffi>=23.1",
"httpx>=0.28",
"python-dateutil>=2.9",
"tzdata>=2024.2",
"mcp>=1.2",
"pymupdf>=1.24",
"pillow>=10.4",
"pyotp>=2.9",
"psycopg[binary,pool]>=3.2",
]
[tool.uv]
package = false
[dependency-groups]
dev = [
"ruff>=0.7",
"pytest>=8.3",
"pytest-asyncio>=0.24",
"testcontainers[postgres]>=4.8",
"dirty-equals>=0.8",
"psycopg[binary,pool]>=3.2",
]
scripts = [
"watchdog>=5",
]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
[tool.ruff]
line-length = 100
target-version = "py312"