-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (44 loc) · 1.37 KB
/
pyproject.toml
File metadata and controls
49 lines (44 loc) · 1.37 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "skillscan"
version = "0.4.0"
description = "CLI tool that scans SKILL.md agent skill files for security threats"
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.10"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Topic :: Security",
"Topic :: Software Development :: Quality Assurance",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Typing :: Typed",
]
keywords = ["security", "ai", "agent", "skill", "scanner", "audit", "llm", "sandbox"]
dependencies = [
"yara-python>=4.5",
"httpx>=0.27",
"pyyaml>=6.0",
"rich>=13.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"pytest-cov",
]
[project.scripts]
skillscan = "skillscan.cli:main"
[project.urls]
Homepage = "https://github.com/NMitchem/SkillScan"
Documentation = "https://github.com/NMitchem/SkillScan#readme"
Issues = "https://github.com/NMitchem/SkillScan/issues"
Changelog = "https://github.com/NMitchem/SkillScan/blob/main/CHANGELOG.md"
[tool.hatch.build.targets.wheel]
packages = ["src/skillscan"]