-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (34 loc) · 765 Bytes
/
pyproject.toml
File metadata and controls
39 lines (34 loc) · 765 Bytes
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
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pentrex"
version = "2.1.0"
description = "AI-powered penetration testing agent"
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.10"
authors = [{name = "sideffect"}]
dependencies = [
"anthropic>=0.39.0",
"litellm>=1.0.0",
"python-dotenv>=1.0.0",
"rich>=13.0.0",
"prompt-toolkit>=3.0.0",
]
[project.optional-dependencies]
all = [
"chromadb>=0.4.0",
"sentence-transformers>=2.0.0",
]
dev = [
"pytest>=7.0",
"pytest-cov>=4.0",
"black>=23.0",
"ruff>=0.1.0",
]
[project.scripts]
pentrex = "pentrex.interface.cli:main"
[tool.setuptools.packages.find]
where = ["."]
include = ["pentrex*"]