-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
44 lines (37 loc) · 971 Bytes
/
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 = ["setuptools>=64", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "mmng-ui"
dynamic = ["version"]
authors = [
{ name="Jason Lingohr", email="jason@lucid.net.au" },
]
description = "The textual user interface to multimon-ng."
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
]
dependencies = [
"click",
"textual",
"rich",
"moment",
]
[project.scripts]
mmng-ui = "mmng_ui.pocsag:main"
[project.urls]
Homepage = "https://github.com/lingfish/mmng-ui"
Issues = "https://github.com/lingfish/mmng-ui/issues"
[tool.setuptools_scm]
version_file = "src/mmng_ui/_version.py"
local_scheme = "no-local-version"
[tool.pylint]
max-line-length = 120
[tool.ruff]
line-length = 120
[tool.ruff.format]
quote-style = "single"