-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
32 lines (31 loc) · 1.06 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
from distutils.core import setup
setup(
name = "rabidsqlr",
packages = ["rabidsqrl"],
version = "0.1.1",
description = "SQLinjection attack tool",
author = "Geoff Lawler",
author_email = "[email protected]",
maintainer = "Geoff Lawler",
maintainer_email = "[email protected]",
url = "http://deterlab.net",
download_url = None,
license = "BSD 3-Clause \"Revised\" License",
keywords = ["sqlinjection", "attack", "pentest"],
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Development Status :: 1 - Alpha",
"Environment :: Other Environment",
"Intended Audience :: Science/Research :: Network Security Researchers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering",
"Topic :: Security",
"Topic :: Software Development :: Testing :: Traffic Generation",
"Topic :: System :: Networking",
],
long_description = """\
TBD
"""
)