-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
105 lines (102 loc) · 2.27 KB
/
pyproject.toml
File metadata and controls
105 lines (102 loc) · 2.27 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
[tool.poetry]
name = "ethical-hacking-pentesting-python"
version = "0.1.0"
description = "Practice Ethical Hacking and Pentesting with Python"
authors = ["Mariano Gobea Alcoba <gobeamariano@gmail.com>" , "Ivanildo Barauna de Souza Junior <ivanildo.souza@mercadolivre.com>"]
license = "Mariano Gobea Alcoba"
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.9,<3.10"
api-to-dataframe = "^1.3.11"
# Agrega las dependencias del requirements.txt
aiohttp = "3.9.5"
aioresponses = "0.7.6"
aiosignal = "1.3.1"
altgraph = "0.17.4"
appnope = "0.1.4"
asttokens = "2.4.1"
bcrypt = "4.1.3"
beautifulsoup4 = "4.12.3"
bs4 = "0.0.2"
certifi = "2024.6.2"
cffi = "1.16.0"
charset-normalizer = "3.3.2"
click = "8.1.7"
click-plugins = "1.1.1"
colorama = "0.4.6"
comm = "0.2.2"
cryptography = "42.0.8"
debugpy = "1.8.7"
decorator = "5.1.1"
dnspython = "2.6.1"
et-xmlfile = "1.1.0"
executing = "2.1.0"
filelock = "3.16.1"
frozenlist = "1.4.1"
html5lib = "1.1"
httpretty = "1.1.4"
idna = "3.7"
ipykernel = "6.29.5"
jedi = "0.19.1"
jupyter_client = "8.6.3"
jupyter_core = "5.7.2"
lxml = "5.2.2"
macholib = "1.16.3"
matplotlib-inline = "0.1.7"
mechanize = "0.4.10"
multidict = "6.0.5"
nest-asyncio = "1.6.0"
numpy = "2.0.0"
openpyxl = "3.1.4"
packaging = "24.1"
pandas = "2.2.2"
paramiko = "3.4.0"
parso = "0.8.4"
pexpect = "4.9.0"
platformdirs = "4.3.6"
progress = "1.6"
prompt_toolkit = "3.0.48"
psutil = "6.0.0"
psycopg2 = "2.9.9"
ptyprocess = "0.7.0"
pure_eval = "0.2.3"
pycparser = "2.22"
Pygments = "2.18.0"
pyinstaller = "6.10.0"
pyinstaller-hooks-contrib = "2024.8"
PyNaCl = "1.5.0"
python-dateutil = "2.9.0.post0"
python-dotenv = "1.0.1"
python-nmap = "0.7.1"
python-Wappalyzer = "0.3.1"
pytz = "2024.1"
pyzmq = "26.2.0"
requests = "2.32.3"
requests-file = "2.1.0"
shodan = "1.31.0"
six = "1.16.0"
soupsieve = "2.5"
SQLAlchemy = "2.0.35"
stack-data = "0.6.3"
tldextract = "5.1.2"
tornado = "6.4.1"
traitlets = "5.14.3"
typing_extensions = "4.12.2"
tzdata = "2024.1"
urllib3 = "2.2.2"
wcwidth = "0.2.13"
webencodings = "0.5.1"
wget = "3.2"
XlsxWriter = "3.2.0"
yarl = "1.9.4"
pynput = "^1.7.7"
pycrypto = "^2.6.1"
scapy = "^2.6.1"
netaddr = "^1.3.0"
mac-vendor-lookup = "^0.1.12"
scapy-http = "^1.8.2"
proxybroker = "^0.3.2"
pysocks = "^1.7.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"