-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
79 lines (69 loc) · 1.86 KB
/
Copy pathpyproject.toml
File metadata and controls
79 lines (69 loc) · 1.86 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "copi"
version = "0.1.0"
description = "CoPI/LabAgent — Research collaboration platform with Slack-based AI agents"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"fastapi>=0.111.0",
"uvicorn[standard]>=0.29.0",
"jinja2>=3.1.4",
"python-multipart>=0.0.9",
"authlib>=1.3.0",
"httpx>=0.27.0",
"sqlalchemy[asyncio]>=2.0.30",
"asyncpg>=0.29.0",
"alembic>=1.13.0",
"anthropic>=0.26.0",
"slack-sdk>=3.27.0",
"pydantic-settings>=2.2.0",
"itsdangerous>=2.2.0",
"boto3>=1.34.0",
"typer>=0.12.0",
"rich>=13.7.0",
"plotly>=5.20.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.2.0",
"pytest-asyncio>=0.23.0",
"ruff>=0.4.0",
"testcontainers[postgres]>=4.0.0",
"respx>=0.21.0",
"syrupy>=4.6.0",
"coverage[toml]>=7.5.0",
"pytest-cov>=5.0.0",
"factory-boy>=3.3.0",
# mutmut 3.x's instrumentation trampoline rejects this repo's `src.`-prefixed
# module names; 2.x mutates files directly and works with the src/ layout.
"mutmut>=2.4,<3",
]
[project.scripts]
copi = "src.cli:app"
[tool.setuptools.packages.find]
where = ["."]
include = ["src*"]
[tool.ruff]
line-length = 100
target-version = "py311"
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B"]
ignore = ["E501"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
markers = [
"integration: needs a real Postgres (testcontainers) + Docker",
"characterization: golden-master snapshot test",
"contract: respx-mocked external HTTP",
]
[tool.coverage.run]
branch = true
source = ["src"]
[tool.coverage.report]
show_missing = false
precision = 0
# Mutation-testing scope lives in scripts/mutation.sh (CLI flags), not here — mutmut
# 2.x reads setup.cfg/CLI rather than pyproject's [tool.mutmut].