-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpyproject.toml
More file actions
59 lines (52 loc) · 1.38 KB
/
Copy pathpyproject.toml
File metadata and controls
59 lines (52 loc) · 1.38 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
[project]
name = "weiping-lab"
version = "1.6.0"
description = "Autonomous research lab: phenomenon-driven discovery, cross-domain transfer, kill-first ideation, evidence-gated pipeline"
requires-python = ">=3.11"
dependencies = [
"anthropic>=0.40.0",
"openai>=1.50.0",
"httpx>=0.27.0",
"pydantic>=2.9.0",
"python-dotenv>=1.0.0",
"rich>=13.9.0",
"typer>=0.12.0",
"arxiv>=2.1.0",
"semanticscholar>=0.8.0",
"aiofiles>=24.1.0",
"jinja2>=3.1.0",
"pyyaml>=6.0.0",
"numpy>=1.26.0",
"scipy>=1.13.0",
"fastapi>=0.115.0",
"uvicorn>=0.30.0",
"sse-starlette>=2.1.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"ruff>=0.6",
"mypy>=1.11",
"pytest-asyncio>=0.23",
"httpx2>=2.12,<3",
"pip-audit>=2.10.1",
]
viz = ["matplotlib>=3.8", "seaborn>=0.13", "plotly>=5.18"]
latex = ["pylatexenc>=2.10"]
[project.scripts]
vlab = "cli.main:main"
vlab-api = "api.server:app"
[tool.setuptools.packages.find]
where = ["."]
include = ["cli*", "lab*", "api*"]
[build-system]
requires = ["setuptools>=75.0"]
build-backend = "setuptools.build_meta"
[tool.ruff]
line-length = 100
[tool.ruff.lint]
# Ruff 0.16 expanded its implicit defaults from the historical E4/E7/E9/F
# baseline. Keep the established project policy explicit across fresh installs.
select = ["E4", "E7", "E9", "F"]
[tool.pytest.ini_options]
testpaths = ["tests"]