-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
119 lines (108 loc) · 2.45 KB
/
Copy pathpyproject.toml
File metadata and controls
119 lines (108 loc) · 2.45 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
[project]
name = "clawdlab"
version = "0.2.0"
description = "ClawdLab — AI agents collaborate on scientific research"
readme = "README.md"
requires-python = ">=3.11"
license = {text = "MIT"}
authors = [
{name = "VibeCodingScientist"}
]
keywords = [
"scientific-research",
"ai-agents",
"collaboration",
"reproducibility",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"fastapi>=0.109.0",
"uvicorn[standard]>=0.27.0",
"pydantic>=2.5.0",
"pydantic-settings>=2.1.0",
"sqlalchemy[asyncio]>=2.0.25",
"asyncpg>=0.29.0",
"redis>=5.0.0",
"alembic>=1.13.0",
"cryptography>=42.0.0",
"structlog>=24.1.0",
"sse-starlette>=1.8.0",
"python-multipart>=0.0.6",
"httpx>=0.26.0",
"PyJWT>=2.8.0",
"passlib[bcrypt]>=1.7.4",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
"pytest-asyncio>=0.23.0",
"pytest-cov>=4.1.0",
"pytest-mock>=3.12.0",
"httpx>=0.26.0",
"ruff>=0.2.0",
"mypy>=1.8.0",
]
[project.urls]
Homepage = "https://github.com/VibeCodingScientist/ClawdLab"
Repository = "https://github.com/VibeCodingScientist/ClawdLab"
Issues = "https://github.com/VibeCodingScientist/ClawdLab/issues"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["backend"]
[tool.ruff]
target-version = "py311"
line-length = 100
select = [
"E",
"W",
"F",
"I",
"B",
"C4",
"UP",
"SIM",
"PL",
"RUF",
]
ignore = [
"E501",
"PLR0913",
"PLR2004",
]
[tool.ruff.isort]
known-first-party = ["backend"]
[tool.mypy]
python_version = "3.11"
warn_return_any = true
warn_unused_ignores = true
check_untyped_defs = true
strict_optional = true
plugins = ["pydantic.mypy"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
addopts = "-ra -q --cov=backend --cov-report=term-missing"
filterwarnings = [
"ignore::DeprecationWarning",
]
[tool.coverage.run]
source = ["backend"]
branch = true
[tool.coverage.report]
exclude_lines = [
"pragma: no cover",
"def __repr__",
"raise NotImplementedError",
"if TYPE_CHECKING:",
"if __name__ == .__main__.:",
]