-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
67 lines (58 loc) · 1.68 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
[project]
name = "zmk"
description = "A command line program to help set up ZMK Firmware"
readme = "README.md"
license = { file = "LICENSE" }
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Software Development",
"Topic :: Utilities",
]
requires-python = ">=3.10"
dependencies = [
"backports.strenum; python_version < '3.11'",
"dacite >= 1.8.1, < 2.0.0",
"mako >= 1.3.3, < 2.0.0",
"rich >= 13.6.0, < 14.0.0",
"ruamel.yaml >= 0.18.6, < 0.19.0",
"shellingham >= 1.5.3, < 2.0.0",
"typer >= 0.12.0, < 0.13.0",
"west >= 1.2.0, < 2.0.0",
]
dynamic = ["version"]
[project.optional-dependencies]
dev = ["pre-commit", "pylint", "pyright"]
[project.urls]
Documentation = "https://zmk.dev/docs"
"Source Code" = "https://github.com/zmkfirmware/zmk-cli/"
"Issue Tracker" = "https://github.com/zmkfirmware/zmk-cli/issues/"
Chat = "https://zmk.dev/community/discord/invite"
[project.scripts]
zmk = "zmk.main:app"
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[tool.isort]
profile = "black"
[tool.pylint.MAIN]
ignore = "_version.py"
[tool.pylint."MESSAGES CONTROL"]
disable = [
"arguments-differ", # Covered by pyright
"fixme",
"too-few-public-methods",
"too-many-arguments",
"too-many-branches",
"too-many-instance-attributes",
"too-many-locals",
"too-many-positional-arguments",
]
[tool.setuptools]
packages = ["zmk"]
[tool.setuptools_scm]
write_to = "zmk/_version.py"