1 Star 0 Fork 0

wayfeel/dirsearch

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
setup.py 1.53 KB
一键复制 编辑 原始数据 按行查看 历史
shelld3v 提交于 2021-07-08 13:02 . Architecture refactor
import setuptools
import os
import io
import tempfile
import shutil
current_dir = os.path.abspath(os.path.dirname(__file__))
with io.open(os.path.join(current_dir, "README.md"), encoding="utf-8") as f:
desc = f.read()
env_dir = tempfile.mkdtemp(prefix="dirsearch-install-")
shutil.copytree(os.path.abspath(os.getcwd()),
os.path.join(env_dir, "dirsearch"))
os.chdir(env_dir)
setuptools.setup(
name="dirsearch",
version="0.4.2",
author="Mauro Soria",
author_email="maurosoria@protonmail.com",
description="Advanced web path scanner",
long_description=desc,
long_description_content_type="text/markdown",
url="https://github.com/maurosoria/dirsearch",
packages=setuptools.find_packages(),
entry_points={
"console_scripts": ["dirsearch=dirsearch.dirsearch:Program"]
},
package_data={
"dirsearch": ["*", "db/*"]
},
include_package_data=True,
python_requires=">=3.7",
install_requires=["certifi>=2020.11.8", "chardet>=3.0.2", "urllib3>=1.21.1", "cryptography>=2.8", "PySocks>=1.6.8", "cffi>=1.14.0"],
classifiers=[
"Programming Language :: Python",
"Environment :: Console",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Operating System :: OS Independent",
"Topic :: Security",
"Programming Language :: Python :: 3.7"
],
keywords=["infosec", "bug bounty", "pentesting", "security"],
)
shutil.rmtree(env_dir, ignore_errors=True)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/wayfeel/dirsearch.git
git@gitee.com:wayfeel/dirsearch.git
wayfeel
dirsearch
dirsearch
master

搜索帮助