-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
60 lines (54 loc) · 1.42 KB
/
pyproject.toml
File metadata and controls
60 lines (54 loc) · 1.42 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
[build-system]
requires = ["setuptools>=68.0"]
build-backend = "setuptools.build_meta"
[project]
name = "auto-scholar"
version = "0.1.0"
requires-python = ">=3.11"
dependencies = [
"fastapi>=0.110.0,<1.0.0",
"uvicorn>=0.27.0,<1.0.0",
"langgraph>=0.2.0,<1.0.0",
"langgraph-checkpoint-sqlite>=1.0.0,<2.0.0",
"langchain-core>=0.3.0,<1.0.0",
"openai>=1.12.0,<2.0.0",
"pydantic>=2.5.0,<3.0.0",
"aiohttp>=3.9.0,<4.0.0",
"httpx>=0.27.0,<1.0.0",
"tenacity>=8.2.0,<9.0.0",
"python-dotenv>=1.0.0,<2.0.0",
"python-docx>=1.1.0,<2.0.0",
"markdown>=3.5.0,<4.0.0",
"matplotlib>=3.8.0,<4.0.0",
"json-repair>=0.30.0,<1.0.0",
"pyyaml>=6.0,<7.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0.0,<9.0.0",
"pytest-asyncio>=0.23.0,<1.0.0",
"pytest-cov>=4.1.0,<5.0.0",
"httpx>=0.27.0,<1.0.0",
"ruff>=0.5.0,<1.0.0",
"mypy>=1.10.0,<2.0.0",
"types-PyYAML>=6.0,<7.0",
"pre-commit>=3.7.0,<4.0.0",
]
[tool.setuptools.packages.find]
include = ["backend*"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
markers = [
"slow: marks tests as slow (deselect with '-m \"not slow\"')",
"integration: marks tests as integration tests requiring external APIs",
]
[tool.coverage.run]
branch = true
source = ["backend"]
omit = ["backend/__init__.py"]
[tool.coverage.report]
exclude_lines = [
"pragma: no cover",
"if TYPE_CHECKING:",
"raise NotImplementedError",
]