-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
44 lines (37 loc) · 1.34 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "reforis-netboot"
version = "1.2.0"
description = "reForis Netboot plugin allows you to set up your Turris MOX as an AP attached to another Turris router."
readme = "README.md"
license = "GPL-3.0-or-later"
authors = [
{ name = "CZ.NIC, z.s.p.o. (https://www.nic.cz/)", email = "[email protected]" },
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Framework :: Flask",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Natural Language :: English",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Application",
]
dependencies = ["Babel", "flask", "Flask-Babel", "reforis"]
[project.optional-dependencies]
devel = ["pytest", "ruff", "werkzeug"]
[project.entry-points."foris.plugins"]
reforis_netboot = "reforis_netboot:netboot"
[tool.hatch.build.targets.sdist]
include = ["/js", "/reforis_netboot", "/reforis_static"]
[tool.hatch.build.targets.wheel.hooks.reforis]
dependencies = ["hatch-reforis"]
reforis_module = "reforis_netboot"
[tool.hatch.build.targets.wheel]
include = ["/reforis_netboot", "/reforis_static"]
exclude = ["**/*.po", "**/*.pot"]
[tool.ruff]
line-length = 120