-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
62 lines (56 loc) · 1.59 KB
/
pyproject.toml
File metadata and controls
62 lines (56 loc) · 1.59 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
[project]
name = "revoltutils"
version = "1.0.2"
description = "revoltutils is an Python utility library offering modular tools for networking, file operations, system info, and automation."
readme = "README.md"
requires-python = ">=3.13"
license = { text = "MIT" }
authors = [
{ name = "D. Sanjai Kumar", email = "bughunterz0047@gmail.com" }
]
keywords = [
"revoltutils",
"python-utils",
"networking",
"system-tools",
"asyncio",
"pentesting",
"bugbounty",
"tooling",
"automation",
"cli"
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.13",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities",
"Topic :: System :: Networking",
"Topic :: System :: Logging"
]
dependencies = [
"aiodns>=3.5.0",
"aiofiles>=24.1.0",
"alive-progress>=3.2.0",
"appdirs>=1.4.4",
"art>=6.5",
"diskcache>=5.6.3",
"fake-useragent>=2.2.0",
"httpx>=0.28.1",
"psutil>=7.0.0",
"pyyaml>=6.0.2",
"requests>=2.32.4",
"revoltlogger>=1.0.0",
"tldextract>=5.3.0"
]
[project.urls]
Homepage = "https://github.com/RevoltSecurities/revoltutils"
Documentation = "https://github.com/RevoltSecurities/revoltutils"
Source = "https://github.com/RevoltSecurities/revoltutils"
Issues = "https://github.com/RevoltSecurities/revoltutils/issues"
[project.scripts]
revoltutils = "revoltutils:main"