代码拉取完成,页面将自动刷新
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)
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。