-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
90 lines (81 loc) · 2.02 KB
/
setup.cfg
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
88
89
90
# coding: utf-8
[metadata]
name = nobodd
version = 0.4
description = A simple TFTP boot server for the Raspberry Pi
long_description = file: README.rst
author = Dave Jones
author_email = [email protected]
project_urls =
Documentation = https://nobodd.readthedocs.io/
Source Code = https://github.com/waveform80/nobodd
Issue Tracker = https://github.com/waveform80/nobodd/issues
keywords = raspberry pi boot nbd tftp
classifiers =
Development Status :: 4 - Beta
Environment :: Console
Intended Audience :: System Administrators
License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Operating System :: POSIX :: Linux
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Topic :: System :: Boot
[options]
packages = find:
python_requires = >=3.7
install_requires =
setuptools
importlib_resources~=1.3;python_version<'3.9'
importlib_metadata~=1.4;python_version<'3.8'
[options.package_data]
nobodd =
*.conf
[options.extras_require]
test =
pytest
pytest-cov
doc =
sphinx
sphinx-rtd-theme
[options.entry_points]
console_scripts =
nobodd-tftpd = nobodd.server:main
nobodd-prep = nobodd.prep:main
[tool:pytest]
addopts = -rsx --cov --tb=short
testpaths = tests
[coverage:run]
source = nobodd
branch = true
[coverage:report]
show_missing = true
exclude_lines =
raise NotImplementedError
assert False
[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
[previewer:settings]
command = make -C docs html
html = build/html
watch =
nobodd/*.py
docs/*.rst
docs/images/*.mscgen
README.rst