-
Notifications
You must be signed in to change notification settings - Fork 208
/
setup.py
47 lines (42 loc) · 1.61 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
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
# -:-:-:-:-:-:-::-:-:#
# XSRF Probe #
# -:-:-:-:-:-:-::-:-:#
# Author: 0xInfection
# This module requires XSRFProbe
# https://github.com/0xInfection/XSRFProbe
import io
from setuptools import setup, find_packages
from os import path
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="xsrfprobe",
version=__import__("xsrfprobe").__version__,
description="The Prime Cross Site Request Forgery (CSRF) Audit & Exploitation Toolkit",
long_description=desc,
long_description_content_type="text/markdown",
author="Pinaki Mondal",
author_email="[email protected]",
license="GPLv3",
url="https://github.com/0xInfection/XSRFProbe",
download_url="https://github.com/0xInfection/XSRFProbe/archive/v%s.zip"
% __import__("xsrfprobe").__version__,
packages=find_packages(),
scripts=["xsrfprobe/bin/xsrfprobe"],
install_requires=["requests", "bs4", "stringdist", "tld", "yattag"],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: System Administrators",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Operating System :: OS Independent",
"Topic :: Internet",
"Topic :: Security",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3",
],
keywords=["csrf", "xsrf", "appsec", "vulnerability scanner", "webapps", "hacking"],
)