-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (29 loc) · 1.05 KB
/
pyproject.toml
File metadata and controls
33 lines (29 loc) · 1.05 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
[build-system]
requires = ["maturin>=1.0,<2.0"]
build-backend = "maturin"
[project]
name = "aif-skillforge"
version = "0.8.0"
description = "SkillForge — quality layer for Agent Skills. Lint, sign, test your SKILL.md files."
requires-python = ">=3.9"
license = "Apache-2.0 OR MIT"
license-files = ["LICENSE", "LICENSE-APACHE", "LICENSE-MIT"]
keywords = ["agent-skills", "skillmd", "lint", "signing", "skill-quality", "claude-code"]
classifiers = [
"Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Software Development :: Quality Assurance",
"Topic :: Security",
"Intended Audience :: Developers",
]
[project.urls]
Homepage = "https://github.com/LiqunChen0606/skillforge"
Repository = "https://github.com/LiqunChen0606/skillforge"
Issues = "https://github.com/LiqunChen0606/skillforge/issues"
[project.scripts]
aif = "skillforge._cli:main"
[tool.maturin]
manifest-path = "crates/aif-python/Cargo.toml"
features = ["pyo3/extension-module"]
python-source = "python"
module-name = "skillforge"