-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (28 loc) · 832 Bytes
/
pyproject.toml
File metadata and controls
33 lines (28 loc) · 832 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
[build-system]
requires = ["setuptools>=69", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "sourceos-agent-machine"
version = "0.1.0.dev0"
description = "SourceOS Agent Machine local and cluster node substrate contracts, validators, and renderers"
readme = "README.md"
requires-python = ">=3.11"
license = { text = "MIT" }
authors = [
{ name = "SourceOS-Linux" }
]
dependencies = [
"jsonschema>=4.22,<5",
"PyYAML>=6.0,<7"
]
[project.scripts]
agent-machine-py = "agent_machine.cli:main"
[project.urls]
Homepage = "https://github.com/SourceOS-Linux/agent-machine"
Repository = "https://github.com/SourceOS-Linux/agent-machine"
[tool.setuptools.packages.find]
where = ["src"]
[tool.agent-machine]
bootstrap_cli = "bin/agent-machine"
python_cli = "agent-machine-py"
canonical_validation = "make validate"