-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
47 lines (45 loc) · 1.4 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
from setuptools import setup, find_packages
with open("README.md", "r") as f:
long_description = f.read()
setup(
name="TechViper",
version="0.3",
description="Web Application Security Scanner",
long_description=long_description,
author="Malwareman007",
author_email="Malwareman007@protonmail.com",
url="https://github.com/Malwareman007",
download_url="https://github.com/Malwareman007/TechViper",
packages=find_packages(),
include_package_data=True,
scripts=('TechViper',),
entry_points={},
install_requires=[
"requests",
],
extras_require={
"tests": [
"pytest",
"pytest-forked",
"pytest-xdist",
"flake8",
],
},
classifiers=[
"Operating System :: POSIX",
"Environment :: Console",
"Environment :: Console :: Curses",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
"Programming Language :: Python :: 3.7",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"Intended Audience :: System Administrators",
"Intended Audience :: Telecommunications Industry",
"Topic :: Security",
"Topic :: System :: Web",
"Topic :: Utilities",
],
)