-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (33 loc) · 804 Bytes
/
pyproject.toml
File metadata and controls
39 lines (33 loc) · 804 Bytes
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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "brainqub3-labs"
version = "0.1.0"
description = "Local-first agent arena for SAS/MAS experimentation and scaling analysis."
readme = "README.md"
requires-python = ">=3.11"
license = { file = "LICENSE" }
authors = [{ name = "Brainqub3" }]
dependencies = [
"PyYAML>=6.0.0",
"python-dotenv>=1.0.0",
"numpy>=1.26.0",
"scikit-learn>=1.5.0",
"claude-agent-sdk>=0.1.33",
]
[project.optional-dependencies]
parquet = ["pyarrow>=18.0.0"]
[dependency-groups]
dev = [
"pytest>=8.0.0",
"ruff>=0.7.0",
"mypy>=1.12.0",
]
[project.scripts]
brainqub3 = "brainqub3.cli:main"
[tool.setuptools.packages.find]
include = ["brainqub3*"]
[tool.pytest.ini_options]
addopts = "-q"
pythonpath = ["."]