-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (31 loc) · 1.33 KB
/
Copy pathpyproject.toml
File metadata and controls
35 lines (31 loc) · 1.33 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "owl-sop-enforcement-gate"
version = "1.0.0"
description = "An enforcing pre-commit / pre-tool-use gate that blocks ontology + config edits on SHACL non-conformance, missing/substanceless sign-off, and unmet phase prerequisites — advisory / enforce / override modes, injectable seams, degrade-open."
readme = "README.md"
requires-python = ">=3.9"
license = { file = "LICENSE" }
authors = [{ name = "Tarun Bhasin" }]
keywords = ["ontology", "owl", "shacl", "sparql", "governance", "pre-commit", "gate", "signoff", "rdflib"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Quality Assurance",
"Typing :: Typed",
]
dependencies = []
[project.optional-dependencies]
# The SHACL seam degrades open without these; install them for real conformance
# checking + SPARQL competency questions over the example ontology.
shacl = ["pyshacl>=0.20", "rdflib>=6"]
dev = ["pytest>=7"]
[project.scripts]
owl-sop-gate = "owl_sop_enforcement_gate.gate:main"
[tool.hatch.build.targets.wheel]
packages = ["src/owl_sop_enforcement_gate"]