-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathsetup.py
More file actions
59 lines (57 loc) · 1.83 KB
/
setup.py
File metadata and controls
59 lines (57 loc) · 1.83 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
from setuptools import setup, find_packages
try:
with open("README.md", encoding="utf-8") as f:
long_description = f.read()
except FileNotFoundError:
long_description = ""
setup(
name="wpat",
version="2.1",
author="Santitub",
license="GPLv3",
author_email="santitub22@email.com",
description="WPAT (WordPress Professional Audit Tool) es una herramienta de auditoría de seguridad para WordPress que detecta vulnerabilidades comunes y expone riesgos de manera eficiente.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/Santitub/WPAT",
packages=find_packages(include=["wpat", "wpat.*"]),
install_requires=[
'colorama',
'requests',
'beautifulsoup4',
'tqdm',
'urllib3',
'jinja2'
],
extras_require={
'gui': [
'pyqt5',
'PyQtWebEngine'
]
},
entry_points={
'console_scripts': [
'wpat=wpat.main:main'
]
},
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Information Technology',
'Topic :: Security',
'Operating System :: OS Independent',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
],
python_requires='>=3.6',
include_package_data=True,
zip_safe=False,
keywords='wordpress security audit toolkit',
project_urls={
'Documentation': 'https://github.com/Santitub/wpat/wiki',
'Source': 'https://github.com/Santitub/wpat',
'Tracker': 'https://github.com/Santitub/wpat/issues',
}
)