-
Notifications
You must be signed in to change notification settings - Fork 25
/
setup.py
35 lines (32 loc) · 993 Bytes
/
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
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='swaggerspy',
version='1.0.0',
packages=['swaggerspy'],
long_description=desc,
long_description_content_type="text/markdown",
install_requires=[
'requests',
'colorama',
],
entry_points={
'console_scripts': [
'swaggerspy = swaggerspy.__main__:main',
],
},
author='Alisson Moretto (UndeadSec)',
description='SwaggerSpy is a tool designed for automated Open Source Intelligence (OSINT) on SwaggerHub.',
url='https://github.com/UndeadSec/SwaggerSpy',
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License'
],
keywords=["python", "pentest", "secret", "bugbounty", "security"],
)