-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathsetup.py
More file actions
56 lines (55 loc) · 1.67 KB
/
setup.py
File metadata and controls
56 lines (55 loc) · 1.67 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
from setuptools import setup, find_packages
setup(
name="fullmute",
version="1.2.0",
packages=find_packages(where="src"),
package_dir={"": "src"},
install_requires=[
"aiohttp>=3.9.0",
"PyYAML>=6.0",
"aiosqlite>=0.19.0",
"rich>=13.7.0",
"fake-useragent>=1.4.0",
"psutil>=5.9.0",
"sqlalchemy>=2.0.0",
"requests>=2.31.0",
"fastapi>=0.104.0",
"uvicorn[standard]>=0.24.0",
"jinja2>=3.1.2",
"python-multipart>=0.0.6",
"pydantic>=2.0.0",
"python-jose[cryptography]>=3.3.0",
"passlib[bcrypt]>=1.7.4",
"apscheduler>=3.10.4",
"click>=8.0.0",
],
entry_points={
"console_scripts": [
"fullmute=fullmute.main:entrypoint",
],
},
python_requires=">=3.8",
include_package_data=True,
package_data={
"fullmute": [
"config/signatures/*.json",
"web/templates/*.html",
"web/static/**/*",
],
},
author="a11mut3d",
description="Mass web scanner with technology detection and sensitive file finder",
keywords="security scanner web technology detection CVE",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: MIT License",
"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",
"Topic :: Security",
],
)