-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpyproject.toml
More file actions
78 lines (60 loc) · 1.31 KB
/
pyproject.toml
File metadata and controls
78 lines (60 loc) · 1.31 KB
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
# ###########################################
#
# Build
#
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.version]
path = "VERSION"
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["src/Loupedeck"]
# ###########################################
#
# Project
#
[project]
name = "loupedeck"
authors = [
{ name="Pierre M.", email="pierre@devleaks.be" }
]
description = "Python wrapper around Loupedeck Live deck device"
readme = "README.md"
license = {file = "LICENSE"}
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
requires-python = ">=3.10"
dependencies = [
"pyserial==3.5",
"pillow>=9.5.0"
]
dynamic = [
"version"
]
[project.urls]
Homepage = "https://github.com/devleaks/python-loupedeck-live"
Documentation = "https://github.com/devleaks/python-loupedeck-live"
Issues = "https://github.com/devleaks/python-loupedeck-live/issues"
Source = "https://github.com/devleaks/python-loupedeck-live"
# ###########################################
#
# 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