-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathsetup.py
More file actions
107 lines (94 loc) · 2.91 KB
/
Copy pathsetup.py
File metadata and controls
107 lines (94 loc) · 2.91 KB
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
"""Setup configuration for ExploiterX package."""
from setuptools import setup, find_packages
import os
# Read README
def read_file(filename):
"""Read file content."""
filepath = os.path.join(os.path.dirname(__file__), filename)
if os.path.exists(filepath):
with open(filepath, 'r', encoding='utf-8') as f:
return f.read()
return ""
setup(
name="ExploiterX",
version="3.0.0",
description="Professional Web Vulnerability Scanner - XSS, SQL Injection, CSRF, XXE, Open Redirect, Command Injection Detection",
long_description=read_file("README.md"),
long_description_content_type="text/markdown",
author="ExploiterX Contributors",
author_email="developers@exploiterx.dev",
url="https://github.com/anishalx/ExploiterX",
license="MIT",
# Package configuration
packages=find_packages(exclude=["tests", "tests.*"]),
include_package_data=True,
# Python version requirement
python_requires=">=3.8",
# Dependencies
install_requires=[
"requests>=2.31.0",
"beautifulsoup4>=4.12.2",
"lxml>=4.9.3",
"pyyaml>=6.0.1",
"jinja2>=3.1.2",
"colorama>=0.4.6",
],
# Optional dependencies
extras_require={
"dev": [
"pytest>=7.4.3",
"pytest-cov>=4.1.0",
"black>=23.0.0",
"flake8>=6.0.0",
"mypy>=1.0.0",
"sphinx>=7.0.0",
],
"test": [
"pytest>=7.4.3",
"pytest-cov>=4.1.0",
"pytest-mock>=3.12.0",
],
},
# Console script entry point
entry_points={
"console_scripts": [
"exploiterx=exploiterX:main",
],
},
# Classifiers
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Security",
"Topic :: Software Development :: Testing",
],
# Keywords
keywords=[
"security",
"vulnerability-scanner",
"xss",
"sql-injection",
"csrf",
"web-security",
"penetration-testing",
],
# Project URLs
project_urls={
"Bug Reports": "https://github.com/anishalx/ExploiterX/issues",
"Source": "https://github.com/anishalx/ExploiterX",
"Documentation": "https://github.com/anishalx/ExploiterX/wiki",
},
# Zip safe
zip_safe=False,
)