-
-
Notifications
You must be signed in to change notification settings - Fork 311
/
setup.py
38 lines (36 loc) · 900 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
36
37
38
"""Setuptools script."""
import os
from setuptools import setup, find_packages
setup(
name="ghauri",
version="1.3.9",
description="An advanced SQL injection detection & exploitation tool.",
classifiers=["Programming Language :: Python3"],
author="Nasir Khan",
author_email="r0oth3x49@gmail.com",
packages=find_packages(),
package_data={"": []},
include_package_data=True,
zip_safe=False,
test_suite="ghauri",
install_requires=[
"tldextract",
"colorama",
"requests",
"chardet",
],
entry_points={"console_scripts": ["ghauri=ghauri.scripts.ghauri:main"]},
keywords=[
"mysql",
"mssql",
"oracle",
"postgre",
"sql",
"injection",
"boolean-based",
"time-based",
"error-based",
"stacked-queries",
],
python_requires=">=3.6",
)