-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
executable file
·87 lines (72 loc) · 2.1 KB
/
pyproject.toml
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
# pyproject.toml
[build-system]
requires = ["setuptools>=61.0", "setuptools-scm>=8.0"]
build-backend = "setuptools.build_meta"
[project]
name = "arptools"
description = "CLI tools to do network analysis with ARP packets."
readme = "README.md"
requires-python = ">=3.12"
license = {file = "LICENSE"}
keywords = ["arp protocol", "networking"]
authors = [
{ name = "Stefano Cuizza", email = "[email protected]" },
]
maintainers = [
{ name = "Stefano Cuizza", email = "[email protected]" },
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: POSIX :: Linux",
"Topic :: Security",
"Topic :: System :: Networking :: Monitoring",
]
dependencies = [
"asciimatics",
"colorama",
"scapy",
]
dynamic = ["version"]
[project.optional-dependencies]
docs = ["myst_parser", "sphinx", "sphinx-argparse", "sphinx_autodoc_typehints", "sphinx_rtd_theme"]
testing = ["pylint", "pytest", "pytest-cov", "ruff", "tox"]
[project.urls]
"Github" = "https://github.com/x55xaa/arptools"
[project.scripts]
arpa = "arptools.__main__:arpa"
arpr = "arptools.__main__:main"
arprobe = "arptools.__main__:arprobe"
arpscan = "arptools.__main__:arpscan"
garp = "arptools.__main__:garp"
[tool.pylint.basic]
include-naming-hint = true
[tool.pylint.format]
ignore-long-lines = "^[^#]*#.*$"
indent-after-paren = 4
indent-string = " "
max-line-length = 99
[tool.pytest.ini_options]
log_format = "[%(levelname)s] %(filename)s:%(lineno)d %(message)s"
testpaths = ["tests"]
[tool.ruff]
indent-width = 4
line-length = 99
output-format = "full"
[tool.ruff.lint]
# ...
[tool.ruff.lint.pycodestyle]
ignore-overlong-task-comments = true
[tool.ruff.lint.pydocstyle]
convention = "google"
[tool.ruff.format]
indent-style = "space"
line-ending = "auto"
quote-style = "single"
skip-magic-trailing-comma = false
[tool.setuptools]
include-package-data = true
[tool.setuptools_scm]
version_scheme = "guess-next-dev"
local_scheme = "no-local-version" # local version not supported by PyPI.