-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
89 lines (81 loc) · 1.91 KB
/
pyproject.toml
File metadata and controls
89 lines (81 loc) · 1.91 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "skillfortify"
version = "0.4.3"
description = "SkillFortify — Supply chain security scanner for AI agent skills. Supports 22 frameworks."
readme = "README.md"
requires-python = ">=3.11"
license = "Elastic-2.0"
authors = [
{ name = "Varun Pratap Bhardwaj", email = "[email protected]" },
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: Other/Proprietary License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Security",
"Topic :: Security :: Cryptography",
"Topic :: Software Development :: Quality Assurance",
]
dependencies = [
"click>=8.1",
"rich>=13.0",
"cyclonedx-python-lib>=7.0",
"pyyaml>=6.0",
]
[project.urls]
Homepage = "https://github.com/qualixar/skillfortify"
Repository = "https://github.com/qualixar/skillfortify"
Paper = "https://arxiv.org/abs/2603.00195"
[project.optional-dependencies]
sat = [
"python-sat>=0.1.8.dev1",
]
registry = [
"httpx>=0.27",
]
all = [
"httpx>=0.27",
"python-sat>=0.1.8.dev1",
]
dev = [
"pytest>=8.0",
"pytest-cov>=5.0",
"hypothesis>=6.0",
"ruff>=0.9",
]
[project.scripts]
skillfortify = "skillfortify.cli.main:cli"
[tool.hatch.build.targets.wheel]
packages = ["src/skillfortify"]
[tool.hatch.build.targets.sdist]
exclude = [
".backup/",
".venv/",
"venv/",
".claude/",
"CLAUDE.md",
"AGENTS.md",
".npmignore",
".code-review-graph/",
".gitnexus/",
".env*",
"*.log",
".pytest_cache/",
".ruff_cache/",
".mypy_cache/",
".hypothesis/",
"htmlcov/",
"*.bak",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.ruff]
target-version = "py311"
line-length = 100