1 Star 0 Fork 0

Lyle/Saker

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
setup.py 1.04 KB
一键复制 编辑 原始数据 按行查看 历史
Lyle 提交于 2021-01-01 10:37 . release version 1.0.8
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
from setuptools import find_packages
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
requires = [
'beautifulsoup4>=4.8.1',
'dnspython>=1.15.0',
'ipaddress>=1.0.19',
'netaddr>=0.7.19',
'PyGithub>=1.44',
'PyJWT>=1.7.1',
'requests>=2.20.0',
'six>=1.11.0',
'termcolor>=1.1.0',
'urllib3>=1.22',
]
setup(
name="Saker",
version="1.0.8",
keywords=("Web Security", "Fuzz"),
description="Tool For Fuzz Web Applications",
long_description=long_description,
long_description_content_type="text/markdown",
license="GPLv3 Licence",
url="https://github.com/LyleMi/Saker",
author="Lyle",
author_email="lylemi@126.com",
packages=find_packages(),
include_package_data=True,
install_requires=requires,
platforms="any",
package_data={
'saker': [
'data/*.*',
'data/sample/*',
'data/domains/*',
]
},
scripts=[],
)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/lylemi/Saker.git
git@gitee.com:lylemi/Saker.git
lylemi
Saker
Saker
master

搜索帮助