-
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) · 1.03 KB
/
Copy pathpyproject.toml
File metadata and controls
37 lines (32 loc) · 1.03 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "context-forge"
version = "0.9.0"
description = "forge — a review-gated context compiler. Turn long-term content into multi-runtime agent context, with PR/approve gates and before/after evaluation."
readme = "README.md"
requires-python = ">=3.10"
license = { text = "MIT" }
authors = [{ name = "dxy", email = "peter.dong@gmail.com" }]
keywords = ["agent", "context", "compiler", "llm", "claude", "review-gated"]
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"pyyaml>=6.0",
"click>=8.1",
"textual>=0.50",
]
[project.optional-dependencies]
dev = ["pytest>=7.0", "pytest-cov"]
[project.scripts]
forge = "forge.cli:main"
[tool.setuptools.packages.find]
include = ["forge*"]
exclude = ["tests*", "examples*"]
[tool.setuptools.package-data]
forge = ["assets/skills/forge/SKILL.md"]