-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (48 loc) · 1.45 KB
/
pyproject.toml
File metadata and controls
58 lines (48 loc) · 1.45 KB
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
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[project]
name = "nobodd"
version = "0.5"
description = "A simple TFTP boot server for the Raspberry Pi"
readme = {file="README.rst", content-type="text/x-rst"}
license = {text="GPL-3.0-or-later"}
keywords = ["raspberry", "pi", "boot", "nbd", "tftp"]
authors = [
{name = "Dave Jones", email = "dave.jones@canonical.com"},
]
requires-python = ">=3.10"
[project.optional-dependencies]
test = ["pytest", "pytest-cov"]
doc = ["sphinx", "sphinx-rtd-theme", "sphinx-autobuild"]
dev = ["pylint", "ruff"]
[project.urls]
Documentation = "https://nobodd.readthedocs.io/"
Repository = "https://github.com/waveform80/nobodd"
Issues = "https://github.com/waveform80/nobodd/issues"
[project.scripts]
nobodd-tftpd = "nobodd.server:main"
nobodd-prep = "nobodd.prep:main"
nobodd-sh = "nobodd.sh:main"
[tool.setuptools]
packages = ["nobodd"]
[tool.setuptools.package-data]
nobodd = ["*.conf"]
[tool.pytest.ini_options]
addopts = "-rsx --cov --tb=short"
testpaths = "tests"
[tool.coverage.run]
source = ["nobodd"]
branch = true
[tool.coverage.report]
show_missing = true
exclude_lines = ["raise NotImplementedError", "assert False"]
[tool.copyrights.settings]
include = ["**/*.py", "**/*.rst"]
exclude = ["docs/examples/*.py", "docs/license.rst"]
additional = ["Canonical Ltd."]
license = "LICENSE.txt"
preamble = [
"nobodd: a boot configuration tool for the Raspberry Pi",
]
strip-preamble = false