-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (46 loc) · 1.04 KB
/
pyproject.toml
File metadata and controls
50 lines (46 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
50
[project]
name = "autoresearch"
version = "0.1.0"
description = "A high-performance Python application template"
readme = "README.md"
license = "Apache-2.0"
requires-python = ">=3.12"
dependencies = [
"click>=8.3.1",
"httpx>=0.28.1",
"mcp>=1.26.0",
"msgspec>=0.20.0",
"orjson>=3.11.7",
"pyyaml>=6.0.3",
"structlog>=25.5.0",
]
[project.scripts]
autoresearch = "autoresearch.cli:main"
autoresearch-mcp-server = "autoresearch.adapters.mcp_server:main"
[build-system]
requires = ["uv_build>=0.10.7,<0.11.0"]
build-backend = "uv_build"
[dependency-groups]
dev = [
"pytest>=9.0.1",
"pytest-cov>=7.1.0",
"pytest-asyncio>=1.3.0",
"pytest-benchmark>=5.2.3",
"ruff>=0.15.5",
"ty>=0.0.21",
"behave>=1.3.3",
"hypothesis>=6.151.9",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["src"]
addopts = [
"-ra",
"--strict-markers",
"--strict-config",
]
markers = [
"slow: marks tests as slow (deselect with '-m \"not slow\"')",
"benchmark: marks benchmark tests",
]
asyncio_mode = "auto"