forked from Liodeus/swaggerHole
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
35 lines (32 loc) · 1.03 KB
/
setup.py
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
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
from os import path
import io
pwd = path.abspath(path.dirname(__file__))
with io.open(path.join(pwd, "README.md"), encoding="utf-8") as readme:
desc = readme.read()
setup(
name="swaggerhole",
version="1.1",
description="Automate the process of retrieving secrets in the public APIs on swaggerHub",
long_description=desc,
long_description_content_type="text/markdown",
author="Liodeus",
license="GPL-3.0 License",
url="https://github.com/Liodeus/swaggerHole",
packages=find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"Topic :: Security",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
],
entry_points={
"console_scripts": [
"swaggerhole = swaggerhole.__main__:main"
]
},
install_requires=["requests", "whispers"],
keywords=["python", "pentesting", "secret", "bugbounty", "security"],
)