-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
99 lines (89 loc) · 2.83 KB
/
Copy pathpyproject.toml
File metadata and controls
99 lines (89 loc) · 2.83 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
# SPDX-FileCopyrightText: 2026 Blackcat Informatics® Inc. <paudley@blackcat.ca>
# SPDX-License-Identifier: AGPL-3.0-only
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "coding-ethos"
version = "0.3.0"
description = "Policy-as-code enforcement for AI agents with MCP, CEL, Git hooks, SARIF, and static-analysis guardrails."
readme = "README.md"
license = "AGPL-3.0-only"
authors = [
{ name = "Blackcat Informatics® Inc.", email = "paudley@blackcat.ca" },
]
maintainers = [
{ name = "Blackcat Informatics® Inc.", email = "paudley@blackcat.ca" },
]
keywords = [
"ai",
"ai-agents",
"agent-instructions",
"cel",
"codex",
"devsecops",
"gemini",
"git-hooks",
"claude",
"llm",
"mcp",
"mcp-server",
"policy-as-code",
"prompt-engineering",
"sarif",
"static-analysis",
"yaml",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development",
"Topic :: Software Development :: Documentation",
"Topic :: Software Development :: Quality Assurance",
"Topic :: Software Development :: Testing",
"Topic :: Security",
"Topic :: Text Processing :: Markup",
]
requires-python = ">=3.13"
dependencies = [
"Jinja2>=3.1.6",
"PyYAML>=6.0.2",
"ruamel.yaml>=0.18.16",
]
[project.urls]
Homepage = "https://github.com/paudley/coding-ethos"
Repository = "https://github.com/paudley/coding-ethos"
Issues = "https://github.com/paudley/coding-ethos/issues"
Changelog = "https://github.com/paudley/coding-ethos/blob/main/CHANGELOG.md"
Documentation = "https://github.com/paudley/coding-ethos/blob/main/docs/index.md"
Security = "https://github.com/paudley/coding-ethos/blob/main/SECURITY.md"
[project.scripts]
coding-ethos = "coding_ethos.cli:main"
[dependency-groups]
dev = [
"coverage>=7.13.0",
"pytest>=8.0",
"types-pyyaml>=6.0.12.20260508",
]
[tool.hatch.build.targets.wheel]
packages = ["coding_ethos"]
[tool.hatch.build.targets.wheel.force-include]
"coding_ethos.yml" = "coding_ethos/resources/coding_ethos.yml"
"config.yaml" = "coding_ethos/resources/config.yaml"
"config.toml" = "coding_ethos/resources/config.toml"
"repo_config.example.yaml" = "coding_ethos/resources/repo_config.example.yaml"
"repo_config.example.toml" = "coding_ethos/resources/repo_config.example.toml"
"repo_ethos.example.yml" = "coding_ethos/resources/repo_ethos.example.yml"
[tool.uv]
exclude-newer = "7 days"
exclude-newer-package = { pip = "2026-05-31T17:33:57Z", sqlfluff = "2026-05-15T00:00:00Z" }
managed = true
[tool.uv.workspace]
members = ["pre-commit/hooks"]
[tool.pytest]
pythonpath = ["."]
testpaths = ["tests"]
addopts = ["-ra"]