-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
85 lines (67 loc) · 1.64 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
# ###########################################
#
# Build
#
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build]
include = [
"/cockpitdecks_bx",
"/cockpitdecks_bx/decks/resources/types/*.yaml",
"/cockpitdecks_bx/decks/resources/images/*.png",
]
[tool.hatch.version]
path = "cockpitdecks_bx/__init__.py"
[tool.hatch.metadata]
allow-direct-references = true
# ###########################################
#
# Project
#
[project]
name = "cockpitdecks_bx"
authors = [
{ name="Pierre M.", email="[email protected]" },
{ name="Duane Licudi", email="[email protected]" }
]
description = "Cockpitdecks for Berhinger X-Touch Mini"
readme = "README.md"
license = {file = "LICENCE"}
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Games/Entertainment :: Simulation",
]
requires-python = ">=3.10,<3.13"
dependencies = [
"cockpitdecks @ git+https://github.com/devleaks/cockpitdecks.git",
"xtouchmini @ git+https://github.com/devleaks/python-berhinger-xtouchmini.git",
"pillow~=11.1.0",
]
dynamic = [
"version"
]
[project.urls]
Homepage = "https://devleaks.github.io/cockpitdecks-docs/"
Documentation = "https://devleaks.github.io/cockpitdecks-docs/"
Issues = "https://github.com/devleaks/cockpitdecks_bx/issues"
Source = "https://github.com/devleaks/cockpitdecks_bx"
# ###########################################
#
# Edit
#
[tool.ruff]
line-length = 160
docstring-code-format = true
select = [
"E",
"F",
"W",
]
ignore = []
[tool.black]
line-length = 160
[tool.flake8]
max-line-length = 160