-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
72 lines (69 loc) · 2.26 KB
/
Copy pathsetup.py
File metadata and controls
72 lines (69 loc) · 2.26 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
"""Package setup for PentestGPT."""
from collections import OrderedDict
from setuptools import find_packages, setup
setup(
name="pentestgpt",
version="3.2.0",
description="PentestGPT v3.2 - Advanced LLM-powered penetration testing framework with multi-agent architecture, detection resistance, and cost optimization",
long_description="""
PentestGPT v3.0 is an advanced LLM-powered penetration testing framework featuring multi-agent architecture,
detection resistance capabilities, and intelligent cost optimization. It automates the penetration testing
process with enhanced security features and improved performance.
""",
author="Gelei Deng",
author_email="gelei.deng@ntu.edu.sg",
maintainer="Gelei Deng",
maintainer_email="gelei.deng@ntu.edu.sg",
url="https://github.com/GreyDGL/PentestGPT",
project_urls=OrderedDict(
(
("Code", "https://github.com/GreyDGL/PentestGPT"),
("Issue tracker", "https://github.com/GreyDGL/PentestGPT/issues"),
),
),
license="MIT License",
packages=["pentestgpt"] + find_packages(),
install_requires=[
"scikit-learn>=1.3.0,<2.0.0",
"numpy>=1.24.0",
"pandas",
"loguru>=0.7.0",
"rich>=13.0.0",
"tqdm>=4.60.0",
"requests>=2.28.0",
"httpx>=0.24.0",
"aiohttp>=3.8.0",
"openai>=1.0.0",
"anthropic>=0.18.0",
"langchain",
"langchain-community",
"langchain-core",
"langchainhub",
"tiktoken>=0.5.0",
"SQLAlchemy>=2.0.0",
"chromadb>=0.4.0",
"pinecone-client>=2.0.0",
"pydantic>=2.0.0",
"PyYAML>=6.0.0",
"python-dotenv>=1.0.0",
"cryptography>=40.0.0",
"nltk>=3.8.0",
"beautifulsoup4>=4.11.0",
"regex>=2023.0.0",
"fastapi>=0.100.0",
"uvicorn>=0.20.0",
"psutil",
"langfuse",
"anyio>=3.6.0",
"python-dateutil>=2.8.0",
"pathspec>=0.11.0",
"sqlmap>=1.8.0",
],
entry_points={
"console_scripts": [
"pentestgpt=pentestgpt.main:main",
"pentestgpt-cookie=pentestgpt.extract_cookie:main",
"pentestgpt-connection=pentestgpt.test_connection:main",
],
},
)