-
Notifications
You must be signed in to change notification settings - Fork 889
/
pyproject.toml
42 lines (38 loc) · 982 Bytes
/
pyproject.toml
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
[tool.poetry]
name = "pentestgpt"
version = "0.14.0"
description = "PentestGPT is an LLM-powered penetration testing tool."
authors = ["Gelei Deng <[email protected]>"]
license = "MIT"
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.10,<4.0"
requests = "^2.31.0"
pyyaml = "^6.0.1"
sqlmap = "^1.8.3"
black = "^24.3.0"
loguru = "^0.7.2"
beautifulsoup4 = ">=4.11.2,<4.12.0"
colorama = "^0.4.6"
rich = "^13.7.1"
prompt-toolkit = "^3.0.43"
google = "^3.0.0"
pytest = "^8.1.1"
openai = "^1.29.0"
langchain = "^0.1.13"
tiktoken = "^0.6.0"
pycookiecheat = "^0.6.0"
tenacity = "^8.2.3"
gpt4all = "^2.3.0"
pinecone-client = "^3.2.0"
langfuse = "1.9.2"
newspaper3k = "^0.2.8"
google-generativeai= "^0.5.2"
toml = "^0.10.2"
[tool.poetry.scripts]
pentestgpt="pentestgpt.main:main"
pentestgpt-connection="pentestgpt.test_connection:main"
pentestgpt-cookie="pentestgpt.extract_cookie:main"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"