-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
39 lines (35 loc) · 1.07 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
36
37
38
39
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
from os import path
import io
VERSION = '1.0.0'
DESCRIPTION = 'Sonarleaks'
pwd = path.abspath(path.dirname(__file__))
with io.open(path.join(pwd, "README.md"), encoding="utf-8") as readme:
LONG_DESCRIPTION = readme.read()
setup(
name="sonarleaks",
version=VERSION,
author="Sébastien Copin",
author_email="[email protected]",
license="GPL-3.0 License",
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
packages=find_packages(),
install_requires=["requests", "argparse"],
url="https://github.com/cosad3s/sonarleaks",
keywords=['leaks', 'sonarcloud', 'osint', 'bugbounty'],
entry_points={
"console_scripts": [
"sonarleaks = sonarleaks.__main__:main"
]
},
include_package_data = True,
classifiers= [
"Topic :: Internet :: WWW/HTTP :: Indexing/Search",
"Topic :: Security",
"Programming Language :: Python :: 3"
]
)