-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
62 lines (52 loc) · 1.63 KB
/
Copy pathpyproject.toml
File metadata and controls
62 lines (52 loc) · 1.63 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
60
61
62
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "conductor-engine"
version = "0.14.0"
description = "Minimal orchestration runtime extracted from the Home AI Control Plane."
readme = "README.md"
requires-python = ">=3.14"
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.14",
"Programming Language :: Python :: Implementation :: CPython",
]
dependencies = [
"httpx>=0.27,<0.28",
"pydantic>=2.6,<3",
"pyyaml>=6.0,<7",
"rich>=13",
]
[project.optional-dependencies]
postgres = ["psycopg>=3,<4"]
redis = ["redis>=5,<6"]
stores = ["psycopg>=3,<4", "redis>=5,<6"]
api = ["fastapi>=0.115,<1", "uvicorn[standard]>=0.30,<1"]
[project.scripts]
cond = "cli.cond:main"
[tool.setuptools.packages.find]
include = ["cli*", "engine*"]
exclude = ["tests*", "docs*", "examples*", "try-it*"]
[tool.setuptools.data-files]
"share/man/man1" = ["docs/man/cond.1"]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["."]
addopts = "-v --tb=short"
[tool.semantic_release]
allow_zero_version = true
major_on_zero = false
build_command = "python -m pip install --upgrade build && python -m build"
commit_message = "chore(release): {version} [skip ci]"
commit_parser = "conventional"
tag_format = "v{version}"
version_toml = ["pyproject.toml:project.version"]
upload_to_release = true
[tool.semantic_release.remote.token]
env = "GITHUB_TOKEN"
[tool.semantic_release.changelog]
template_dir = ".semantic_release_templates"
[tool.semantic_release.changelog.default_templates]
changelog_file = "CHANGELOG.md"
release_body = "release.md.j2"