-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (32 loc) · 843 Bytes
/
Copy pathpyproject.toml
File metadata and controls
37 lines (32 loc) · 843 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
34
35
36
37
[build-system]
requires = ["setuptools>=68.0"]
build-backend = "setuptools.build_meta"
[project]
name = "agentprecept"
version = "0.4.9"
description = "AgentPrecept — AI coding agent governance toolkit (precept, not monitoring)"
license = {text = "MIT"}
requires-python = ">=3.10"
dependencies = ["PyYAML>=6.0", "fastmcp>=2.0"]
[project.scripts]
agentprecept = "agentprecept.cli:main"
agentprecept-mcp = "agentprecept.mcp_server:main"
[tool.setuptools.packages.find]
include = ["agentprecept*"]
[tool.setuptools]
include-package-data = true
[tool.setuptools.package-data]
agentprecept = [
"AGENTS.md",
"SKILL.md",
"templates/*.md",
"templates/*.yaml",
"methodology/*.md",
"skills/*.md",
"scripts/*.ps1",
"scripts/*.sh",
"scripts/*.py",
"scripts/*.md",
"examples/*.md",
"reference/*.md",
]