-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
33 lines (29 loc) · 1.04 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "dbxdriverack"
version = "0.0.4"
authors = [{ name = "Matt Kupferman", email = "[email protected]" }]
maintainers = [{ name = "Matt Kupferman", email = "[email protected]" }]
description = "Python client library for communicating with dbx DriveRack loudspeaker management systems"
readme = "README.md"
requires-python = ">=3.11"
license = { file = "LICENSE.txt" }
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Development Status :: 4 - Beta",
]
dependencies = ["tssplit"]
[project.urls]
Homepage = "https://github.com/mkupferman/dbxdriverack-python"
Documentation = "https://mkupferman.github.io/dbxdriverack-python/"
[tool.setuptools.package-data]
"dbxdriverack" = ["py.typed"]
[project.optional-dependencies]
dev = ["black"]
validate = ["mypy"]
docs = ["sphinx", "sphinxcontrib-napoleon", "sphinx-rtd-theme"]