We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 31bf199 commit e09fbeaCopy full SHA for e09fbea
2 files changed
pyproject.toml
@@ -16,6 +16,7 @@ classifiers = [
16
"Programming Language :: Python :: 3.11",
17
"Programming Language :: Python :: 3.12",
18
"Programming Language :: Python :: 3.13",
19
+ "Programming Language :: Python :: 3.14",
20
"Operating System :: POSIX :: Linux",
21
"Topic :: Security",
22
]
requirements.txt
@@ -1,6 +1,12 @@
1
-chardet==5.2.0
2
-pytest
+# Core dependencies for wifite2
+# These should match pyproject.toml [project.dependencies]
3
+
4
+chardet>=5.2.0
5
requests>=2.31.0
6
rich>=13.0.0
-scapy==2.6.1
7
+scapy>=2.6.1; python_version < '4'
8
setuptools>=78.1.1
9
10
+# Development dependencies (optional)
11
+# For development, install with: pip install -e ".[dev]"
12
+# Or install from pyproject.toml: pip install pytest>=8.0.0 pytest-cov>=4.1.0
0 commit comments