-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (39 loc) · 1.36 KB
/
pyproject.toml
File metadata and controls
45 lines (39 loc) · 1.36 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
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "hancock-client"
version = "0.6.0"
description = "Hancock AI Cybersecurity Agent — Python SDK (NVIDIA NIM backend)"
readme = "clients/python/README.md"
license = { file = "LICENSE" }
requires-python = ">=3.10"
authors = [{ name = "Johnny Watters", email = "0ai@cyberviserai.com" }]
maintainers = [{ name = "0ai-Cyberviser", email = "cyberviser@proton.me" }]
keywords = ["cybersecurity", "ai", "pentest", "soc", "llm", "nvidia", "security"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Information Technology",
"Topic :: Security",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: Apache Software License",
]
dependencies = [
"openai>=1.0.0",
"python-dotenv>=1.0.0",
]
[project.urls]
Homepage = "https://0ai-cyberviser.github.io/0ai/"
Repository = "https://github.com/0ai-Cyberviser/Hancock"
Documentation = "https://github.com/cyberviser/Hancock/tree/main/docs"
[project.scripts]
hancock = "hancock_cli:main"
[tool.setuptools]
py-modules = ["hancock_client", "hancock_cli"]
[tool.setuptools.package-dir]
"" = "clients/python"
[tool.pylint."messages_control"]
disable = ["import-error"]