-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
77 lines (68 loc) · 1.72 KB
/
pyproject.toml
File metadata and controls
77 lines (68 loc) · 1.72 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
[build-system]
requires = ["setuptools>=61.0,<75"]
build-backend = "setuptools.build_meta"
[project]
name = "humanbound-cli"
version = "1.1.0"
authors = [
{ name="Kostas Siabanis", email="hello@humanbound.ai" },
{ name="Demetris Gerogiannis", email="hello@humanbound.ai" },
]
description = "Humanbound CLI - command line interface for AI agent security testing."
license = {text = "Apache-2.0"}
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Environment :: Console",
"Framework :: Pytest",
]
dependencies = [
"click>=8.1.0",
"rich>=13.0.0",
"requests>=2.32.0",
"pyyaml>=6.0.0",
"msal>=1.31.0",
"pyperclip>=1.8.0",
]
[project.optional-dependencies]
engine = [
"openai>=1.0.0",
"anthropic>=0.20.0",
"google-generativeai>=0.3.0",
"websockets>=12.0",
]
firewall = [
"hb-firewall",
"scikit-learn>=1.3.0",
"torch>=2.0.0",
]
mcp = [
"mcp>=1.2.0",
]
pytest = [
"pytest>=7.0.0",
]
dev = [
"pytest>=7.0.0",
"pytest-cov>=4.0.0",
]
[project.scripts]
hb = "humanbound_cli.main:main"
[project.entry-points.pytest11]
hb = "humanbound_cli.pytest_plugin"
[project.urls]
Homepage = "https://github.com/Humanbound/humanbound-cli"
Documentation = "https://docs.humanbound.ai/cli"
Issues = "https://github.com/Humanbound/humanbound-cli/issues"
[tool.setuptools.packages.find]
where = ["."]
[tool.setuptools.package-data]
humanbound_cli = ["templates/*.html", "templates/*.svg"]
[tool.pytest.ini_options]
markers = [
"hb: mark test as a Humanbound security test",
"hb_category(name): mark test for a specific category",
]