-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpyproject.toml
57 lines (49 loc) · 1.19 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
[build-system]
requires = ["setuptools", "setuptools_scm[toml]"]
build-backend = "setuptools.build_meta"
[project]
name = "usbsdmux"
description = "Tool to control an USB-SD-Mux from the command line"
authors = [
{ name = "Chris Fiege", email = "[email protected]" },
]
readme = "README.rst"
license = { "text" = "LGPL-2.1-or-later" }
dependencies = []
classifiers = [
"Environment :: Console",
"Natural Language :: English",
"Operating System :: Unix",
"Programming Language :: Python :: 3 :: Only",
]
dynamic = ["version"] # via setuptools_scm
[project.optional-dependencies]
mqtt = ["paho-mqtt"]
[project.urls]
homepage="https://github.com/linux-automation/usbsdmux"
documentation="https://www.linux-automation.com/usbsdmux-M01/"
[project.scripts]
usbsdmux = "usbsdmux.__main__:main"
usbsdmux-configure = "usbsdmux.usb2642eeprom:main"
[tool.setuptools]
packages = [
"usbsdmux",
]
include-package-data = true
[tool.setuptools_scm]
local_scheme = "no-local-version"
[tool.ruff]
line-length = 119
exclude = [
"__pycache__",
"usbsdmux.egg-info",
".pybuild",
"build",
"debian",
"env",
"venv",
"envs",
"dist",
]
[tool.ruff.lint]
select = ["B", "E", "F", "I", "SIM", "UP"]