-
-
Notifications
You must be signed in to change notification settings - Fork 347
Expand file tree
/
Copy pathpyproject.toml
More file actions
65 lines (58 loc) · 1.48 KB
/
Copy pathpyproject.toml
File metadata and controls
65 lines (58 loc) · 1.48 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
[build-system]
requires = ["setuptools>=68.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "guardian-cli"
version = "0.1.0"
description = "AI-Powered Penetration Testing Automation CLI Tool"
readme = "README.md"
requires-python = ">=3.11"
license = {text = "MIT"}
authors = [
{name = "Guardian Team"}
]
keywords = ["penetration-testing", "security", "ai", "automation", "cli"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Security",
]
dependencies = [
"typer[all]>=0.12.0",
"rich>=13.7.0",
"langchain>=0.1.0",
"langchain-google-genai>=1.0.0",
"langchain-openai>=0.1.0",
"langchain-anthropic>=0.1.0",
"pyyaml>=6.0.1",
"python-dotenv>=1.0.0",
"pydantic>=2.5.0",
"asyncio>=3.4.3",
"aiofiles>=23.2.1",
"jinja2>=3.1.3",
]
[project.optional-dependencies]
dev = [
"pytest>=7.4.0",
"pytest-asyncio>=0.21.0",
"black>=23.12.0",
"ruff>=0.1.0",
]
litellm = [
"litellm>=1.80,<1.87",
]
[project.scripts]
guardian = "cli.main:app"
[tool.setuptools]
packages = ["cli", "core", "ai", "tools", "reports", "utils", "workflows"]
[tool.black]
line-length = 100
target-version = ["py311"]
[tool.ruff]
line-length = 100
target-version = "py311"