-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (40 loc) · 1.56 KB
/
Copy pathpyproject.toml
File metadata and controls
46 lines (40 loc) · 1.56 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
[build-system]
requires = ["setuptools>=77"]
build-backend = "setuptools.build_meta"
[project]
name = "delivery-workbench"
description = "Evidence-first rails for agentic software delivery: Markdown roadmaps, paired evidence, and a machine-verified commit gate."
readme = "README.md"
license = "MIT"
license-files = ["LICENSE"]
requires-python = ">=3.9"
# Runtime is stdlib-only by design (proof: the python-floor CI job);
# an empty dependency list is a distribution feature, not an omission.
dependencies = []
dynamic = ["version"]
authors = [{ name = "Karol Sane", email = "karolsane@gmail.com" }]
keywords = ["delivery", "roadmap", "commit-gate", "evidence", "agents"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Operating System :: MacOS",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Version Control :: Git",
]
[project.urls]
Homepage = "https://github.com/karolswdev/delivery-workbench"
Documentation = "https://github.com/karolswdev/delivery-workbench/tree/main/docs"
Repository = "https://github.com/karolswdev/delivery-workbench"
Changelog = "https://github.com/karolswdev/delivery-workbench/blob/main/CHANGELOG.md"
Issues = "https://github.com/karolswdev/delivery-workbench/issues"
[project.scripts]
dw = "dw_pmo.launcher:main"
[tool.setuptools]
package-dir = { "" = "pmo-roadmap/lib" }
[tool.setuptools.packages.find]
where = ["pmo-roadmap/lib"]
include = ["dw_pmo*"]
[tool.setuptools.dynamic]
version = { attr = "dw_pmo.__version__" }