-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (33 loc) · 834 Bytes
/
Copy pathpyproject.toml
File metadata and controls
38 lines (33 loc) · 834 Bytes
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
[tool.poetry]
name = "netphantom"
version = "0.2.0"
description = "Advanced Network Phantom Poisoning & Authentication Capture Framework"
authors = ["ismailtasdelen <ismailtasdelen@gmail.com>"]
readme = "README.md"
packages = [{include = "netphantom"}]
[tool.poetry.dependencies]
python = "^3.11"
scapy = "^2.5.0"
rich = "^13.7.0"
netifaces = "^0.11.0"
pyyaml = "^6.0.1"
pydantic = "^2.5.2"
typing-extensions = "^4.8.0"
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.3"
pytest-asyncio = "^0.23.2"
black = "^24.3.0"
flake8 = "^6.1.0"
mypy = "^1.7.0"
types-pyyaml = "^6.0.12"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 100
target-version = ['py311']
[tool.mypy]
python_version = "3.11"
strict = true
ignore_missing_imports = true
plugins = ["pydantic.mypy"]