-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (31 loc) · 848 Bytes
/
pyproject.toml
File metadata and controls
36 lines (31 loc) · 848 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
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "search-stability-lab"
version = "0.1.0"
description = "Reproducible experiment harness for search stability under finite context."
readme = "README.md"
requires-python = ">=3.11"
license = { text = "Apache-2.0" }
authors = [{ name = "search-stability-lab maintainers" }]
dependencies = [
"PyYAML>=6.0",
"pydantic>=2.7,<3",
"numpy>=1.26",
"pandas>=2.2",
"scipy>=1.13",
"statsmodels>=0.14",
"matplotlib>=3.8",
"jsonschema>=4.22",
"pytest>=8.2",
"google-genai>=1.0.0",
]
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["."]
include = ["analysis*", "controllers*", "core*", "models*", "simulator*", "tasks*"]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["."]