-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathsetup.py
More file actions
80 lines (75 loc) · 2.4 KB
/
Copy pathsetup.py
File metadata and controls
80 lines (75 loc) · 2.4 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
# Copyright (c) 2026 waymap developers
# See the file 'LICENSE' for copying permission.
"""Setup configuration for Waymap."""
from setuptools import setup, find_packages
import os
# Read the long description from README
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
# Read version from VERSION file
with open("VERSION", "r") as f:
version = f.read().strip()
setup(
name="waymap",
version=version,
author="Trix Cyrus (Vicky)",
author_email="trixcyrus666@gmail.com",
description="Advanced Web Application Security Scanner with AI-powered vulnerability analysis",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/TrixSec/waymap",
packages=find_packages(exclude=["tests", "tests.*", "*.tests", "*.tests.*"]),
package_dir={
"": ".",
},
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Topic :: Security",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Operating System :: OS Independent",
],
python_requires=">=3.8",
install_requires=[
"requests>=2.33.0",
"beautifulsoup4>=4.12.0",
"urllib3>=2.7.0",
"fpdf>=1.7.2",
"defusedxml>=0.7.1",
"selectolax>=0.3.17",
],
extras_require={
"ai": [
"openai>=1.0.0",
],
},
scripts=[
"waymap.py",
],
include_package_data=True,
package_data={
"": [
"data/*",
"config/*",
"*.txt",
"*.json",
"*.xml",
"*.md",
"VERSION",
"logo.png",
],
},
keywords="security scanner vulnerability web-security penetration-testing ai llm xss sqli cmdi",
project_urls={
"Bug Reports": "https://github.com/TrixSec/waymap/issues",
"Source": "https://github.com/TrixSec/waymap",
"Documentation": "https://github.com/TrixSec/waymap/blob/main/README.md",
},
)