|
1 | | -[tool.poetry] |
| 1 | +[project] |
2 | 2 | name = "wifite2" |
3 | | -version = "0.1.0" |
4 | | -description = "" |
5 | | -authors = ["kimocoder <christian@aircrack-ng.org>"] |
| 3 | +version = "2.9.9-beta" |
| 4 | +description = "Wireless Network Auditor for Linux & Android" |
| 5 | +authors = [ |
| 6 | + {name = "kimocoder", email = "christian@aircrack-ng.org"} |
| 7 | +] |
6 | 8 | readme = "README.md" |
| 9 | +license = "GPL-2.0-only" |
| 10 | +requires-python = ">=3.9" |
| 11 | +keywords = ["wireless", "security", "auditing", "penetration-testing", "wifi"] |
| 12 | +classifiers = [ |
| 13 | + "Programming Language :: Python :: 3", |
| 14 | + "Programming Language :: Python :: 3.9", |
| 15 | + "Programming Language :: Python :: 3.10", |
| 16 | + "Programming Language :: Python :: 3.11", |
| 17 | + "Programming Language :: Python :: 3.12", |
| 18 | + "Programming Language :: Python :: 3.13", |
| 19 | + "Operating System :: POSIX :: Linux", |
| 20 | + "Topic :: Security", |
| 21 | +] |
| 22 | +dependencies = [ |
| 23 | + "chardet>=5.2.0", |
| 24 | + "rich>=13.0.0", |
| 25 | + "scapy>=2.6.1; python_version < '4'", |
| 26 | + "setuptools>=78.1.1", |
| 27 | +] |
| 28 | + |
| 29 | +[project.urls] |
| 30 | +Homepage = "https://github.com/kimocoder/wifite2" |
| 31 | +Repository = "https://github.com/kimocoder/wifite2" |
| 32 | +Issues = "https://github.com/kimocoder/wifite2/issues" |
| 33 | + |
| 34 | +[project.scripts] |
| 35 | +wifite = "wifite.wifite:main" |
7 | 36 |
|
8 | | -[tool.poetry.dependencies] |
9 | | -python = "^3.11" |
10 | | -setuptools = "^80.9.0" |
11 | | -chardet = "^5.2.0" |
| 37 | +[project.optional-dependencies] |
| 38 | +dev = [ |
| 39 | + "pytest>=8.0.0", |
| 40 | + "pytest-cov>=4.1.0", |
| 41 | +] |
| 42 | + |
| 43 | +[tool.poetry] |
| 44 | +packages = [ |
| 45 | + { include = "wifite" } |
| 46 | +] |
12 | 47 |
|
| 48 | +[tool.pytest.ini_options] |
| 49 | +testpaths = ["tests"] |
| 50 | +python_files = ["test_*.py"] |
| 51 | +python_classes = ["Test*"] |
| 52 | +python_functions = ["test_*"] |
| 53 | +addopts = "-v --tb=short" |
13 | 54 |
|
14 | 55 | [build-system] |
15 | 56 | requires = ["poetry-core"] |
|
0 commit comments