-
-
Notifications
You must be signed in to change notification settings - Fork 87
/
pyproject.toml
56 lines (46 loc) · 1.92 KB
/
pyproject.toml
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
[tool.poetry]
name = "pyhtools"
version = "2.4.0"
description = "Python Hacking Tools (PyHTools) (pht) is a collection of python written hacking tools consisting of network scanner, arp spoofer and detector, dns spoofer, code injector, packet sniffer, network jammer, email sender, downloader, wireless password harvester credential harvester, keylogger, download&execute, and reverse_backdoor along with website login bruteforce, scraper, web spider etc. PHT also includes malwares which are undetectable by the antiviruses."
authors = ["Dhrumil Mistry <[email protected]>"]
license = "MIT"
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.10,<4.0"
aiodns = "^3.0.0"
aiohttp = "^3.8.4"
beautifulsoup4 = "^4.11.2"
colorama = "^0.4.6"
pure-python-adb = "^0.3.0.dev0"
pyfiglet = "^0.8.post1"
pynput = "^1.7.6"
prettytable = "^3.6.0"
psutil = "^5.9.4"
requests = "^2.28.2"
scapy = "^2.5.0"
zstandard = "^0.20.0"
netfilterqueue = {version = "^1.1.0", optional = true}
wmi = {version = "^1.5.1", optional = true}
mkdocs = {version = "^1.4.3", optional = true}
mkdocstrings = {extras = ["python"], version = "^0.21.2", optional = true}
mkdocs-material = {version = "^9.1.12", optional = true}
packaging = {version = "^23.1", optional = true}
frida-tools = "^12.2.1"
lxml = "^5.2.2"
setuptools = "^72.1.0"
pyhtools-evil-files = {git = "https://github.com/dmdhrumilmistry/pyhtools-evil-files.git", tag="v1.0.0"}
[tool.poetry.extras]
linux = ["netfilterqueue"]
windows = ["wmi"]
docs = ["mkdocs", "mkdocstrings", "mkdocs-material"]
dev = ["packaging"]
[tool.poetry.urls]
"Home" = "https://github.com/dmdhrumilmistry/pyhtools"
"Bug Tracker" = "https://github.com/dmdhrumilmistry/pyhtools/issues"
"Support" = "https://github.com/sponsors/dmdhrumilmistry/"
"PayPal" = "https://paypal.me/dmdhrumilmistry"
[tool.poetry.scripts]
pyhtools = "pyhtools.__main__:start"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"