5 Star 5 Fork 3

Gitee 极速下载/PentestGPT

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
此仓库是为了提升国内下载速度的镜像仓库,每日同步一次。 原始仓库: https://github.com/GreyDGL/PentestGPT
克隆/下载
setup.py 1.46 KB
一键复制 编辑 原始数据 按行查看 历史
Gelei Deng 提交于 2024-11-01 15:19 +08:00 . Version update (#247)
import os
from collections import OrderedDict
from setuptools import find_packages, setup
with open(os.path.join(os.path.dirname(__file__), "requirements.txt")) as f:
dependencies = f.read().strip().split("\n")
setup(
name="pentestgpt",
version="0.14.0",
description="PentestGPT, a GPT-empowered penetration testing tool",
long_description="""
PentestGPT is a penetration testing tool empowered by ChatGPT.
It is designed to automate the penetration testing process. It
is prototyped initially on top of ChatGPT and operate in an
interactive mode to guide penetration testers in both overall
progress and specific operations.
""",
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(),
# packages=find_packages(),
# scripts=['pentestgpt/main.py'],
install_requires=dependencies,
entry_points={
"console_scripts": [
"pentestgpt=pentestgpt.main:main",
"pentestgpt-cookie=pentestgpt.extract_cookie:main",
"pentestgpt-connection=pentestgpt.test_connection:main",
]
},
)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/mirrors/PentestGPT.git
git@gitee.com:mirrors/PentestGPT.git
mirrors
PentestGPT
PentestGPT
main

搜索帮助