-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (36 loc) · 1.08 KB
/
Copy pathpyproject.toml
File metadata and controls
42 lines (36 loc) · 1.08 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
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[project]
name = "pull-and-push"
version = "0.1.0"
description = "Pull-and-Push — adversarial co-evolution agent orchestrator (asymmetric MVP)"
requires-python = ">=3.10"
dependencies = [
"pydantic>=2",
"pyyaml>=6",
]
[project.optional-dependencies]
web = [
"fastapi>=0.110",
"uvicorn>=0.27",
]
dev = [
"pytest>=7",
"fastapi>=0.110",
"uvicorn>=0.27",
"httpx>=0.27",
]
[project.scripts]
pull-and-push = "tyani_tolkai.cli:main"
tyani-tolkai = "tyani_tolkai.cli:main" # back-compat alias (internal package stays tyani_tolkai)
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
"tyani_tolkai.web" = ["static/*.html"]
# Vetted scaffold templates (manifest + seed + harness) ship with the package so the
# research/scaffold phase works from an installed wheel, not just an editable checkout.
"tyani_tolkai" = ["templates/**/*", "templates/**/*.csv", "templates/**/*.py", "templates/**/*.json"]
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-q"