-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
30 lines (25 loc) · 757 Bytes
/
Copy pathpyproject.toml
File metadata and controls
30 lines (25 loc) · 757 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
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "porthawk"
version = "0.1.0"
description = "An educational TCP port scanner for authorized targets only"
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.10"
dependencies = []
[project.scripts]
porthawk = "porthawk.__main__:main"
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"pytest-cov>=5.0",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.setuptools]
# Force compat editable mode: generates a simple .pth file instead of a
# dynamic meta-path finder. Required for Python 3.14+ where .pth files
# containing `import` statements are no longer executed (PEP 765).
editable-mode = "compat"