This repository has been archived by the owner on Apr 27, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 150
/
setup.py
50 lines (46 loc) · 1.54 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
40
41
42
43
44
45
46
47
48
49
50
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
import io
from os import path
from pathlib import Path
from setuptools import find_packages, setup
this_directory = path.abspath(path.dirname(__file__))
with io.open(path.join(this_directory, "README.md"), encoding="utf-8") as f:
desc = f.read()
setup(
name="scant3r",
version="0.9.3",
description="Module based Bug Bounty Automation Tool",
long_description=desc,
long_description_content_type="text/markdown",
author="Khaled Nassar",
author_email="[email protected]",
license="GNU General Public License v3 (GPLv3)",
url="https://github.com/knassar702/scant3r",
zip_safe=False,
download_url="https://github.com/knassar702/scant3r/archive/v%s.zip" % "0.9.2",
packages=find_packages(),
include_package_data=True,
package_data={"scant3r": ["db/txt/*.txt"]},
install_requires=Path(f"{this_directory}/requirements.txt")
.read_text()
.splitlines(),
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Operating System :: OS Independent",
"Topic :: Security",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3.10",
],
entry_points={"console_scripts": ["scant3r = scant3r.__main__:main"]},
keywords=[
"sectools",
"scant3r",
"bug bounty",
"automation",
"pentesting",
"security",
],
)