Skip to content

Commit e09fbea

Browse files
committed
fix dependency handling
1 parent 31bf199 commit e09fbea

2 files changed

Lines changed: 10 additions & 3 deletions

File tree

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ classifiers = [
1616
"Programming Language :: Python :: 3.11",
1717
"Programming Language :: Python :: 3.12",
1818
"Programming Language :: Python :: 3.13",
19+
"Programming Language :: Python :: 3.14",
1920
"Operating System :: POSIX :: Linux",
2021
"Topic :: Security",
2122
]

requirements.txt

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
1-
chardet==5.2.0
2-
pytest
1+
# Core dependencies for wifite2
2+
# These should match pyproject.toml [project.dependencies]
3+
4+
chardet>=5.2.0
35
requests>=2.31.0
46
rich>=13.0.0
5-
scapy==2.6.1
7+
scapy>=2.6.1; python_version < '4'
68
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

Comments
 (0)