-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (40 loc) · 967 Bytes
/
Copy pathpyproject.toml
File metadata and controls
47 lines (40 loc) · 967 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
40
41
42
43
44
45
46
47
[project]
name = "mathevidence-adapters"
version = "0.1.0"
description = "Untrusted MathEvidence backend adapters (JSON-RPC over stdio)"
readme = "adapters/README.md"
requires-python = ">=3.12"
license = { text = "Apache-2.0" }
authors = [{ name = "MathEvidence contributors" }]
dependencies = [
"jsonschema>=4.23.0",
]
[project.optional-dependencies]
dev = [
"mypy>=1.14.0",
"pytest>=8.3.0",
"ruff>=0.9.0",
"hypothesis>=6.122.0",
]
sympy = [
"sympy>=1.13.0",
]
mathematica = []
sage = []
[build-system]
requires = ["hatchling>=1.26.0"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["adapters", "agent", "foundry"]
[tool.ruff]
line-length = 100
target-version = "py312"
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B"]
[tool.mypy]
python_version = "3.12"
strict = true
packages = ["adapters", "agent"]
[tool.pytest.ini_options]
testpaths = ["adapters", "agent", "foundry", "tests"]
python_files = ["test_*.py"]