-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (41 loc) · 1.27 KB
/
Copy pathpyproject.toml
File metadata and controls
47 lines (41 loc) · 1.27 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
[build-system]
requires = ["setuptools>=77"]
build-backend = "setuptools.build_meta"
[project]
name = "agent-skill-doctor"
version = "0.1.0"
description = "A fast, deterministic static checker for Agent Skills"
readme = "README.md"
requires-python = ">=3.10"
license = "MIT"
keywords = ["agent", "ai", "codex", "lint", "security", "skills"]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Quality Assurance",
]
dependencies = []
[project.urls]
Homepage = "https://github.com/014-code/agent-skill-doctor"
Repository = "https://github.com/014-code/agent-skill-doctor"
Issues = "https://github.com/014-code/agent-skill-doctor/issues"
[project.optional-dependencies]
dev = [
"build>=1.2",
"pytest>=8",
]
[project.scripts]
skill-doctor = "skill_doctor:main"
[tool.setuptools]
py-modules = ["skill_doctor"]
package-dir = { "" = "skills/skill-doctor/scripts" }
[tool.pytest.ini_options]
addopts = "-ra"
testpaths = ["tests"]