forked from derv82/wifite2
-
Notifications
You must be signed in to change notification settings - Fork 274
Expand file tree
/
Copy pathpyproject.toml
More file actions
63 lines (57 loc) · 1.61 KB
/
Copy pathpyproject.toml
File metadata and controls
63 lines (57 loc) · 1.61 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
[project]
name = "wifite2"
version = "2.9.9-beta"
description = "Wireless Network Auditor for Linux & Android"
authors = [
{name = "kimocoder", email = "christian@aircrack-ng.org"}
]
readme = "README.md"
license = "GPL-2.0-only"
requires-python = ">=3.10"
keywords = ["wireless", "security", "auditing", "penetration-testing", "wifi"]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Operating System :: POSIX :: Linux",
"Topic :: Security",
]
dependencies = [
"chardet>=7.4.3",
"requests>=2.34.2",
"rich>=15.0.0",
"scapy>=2.7.1rc1; python_version < '4'",
"setuptools>=82.0.1",
"urllib3>=2.7.0", # pinned by Snyk to avoid a vulnerability
]
[project.urls]
Homepage = "https://github.com/kimocoder/wifite2"
Repository = "https://github.com/kimocoder/wifite2"
Issues = "https://github.com/kimocoder/wifite2/issues"
[project.scripts]
wifite = "wifite.wifite:main"
[project.optional-dependencies]
dev = [
"pytest>=9.0.3",
"pytest-cov>=7.1.0",
"pytest-timeout>=2.4.0",
]
[tool.poetry]
packages = [
{ include = "wifite" }
]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
addopts = "-v --tb=short"
markers = [
"timeout(seconds): set a timeout for the test (requires pytest-timeout)",
]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"