-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
43 lines (37 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
34
35
36
37
38
39
40
41
42
43
[build-system]
requires = ["setuptools>=62.3"]
build-backend = "setuptools.build_meta"
[tool.setuptools.package-data]
ynca = ["py.typed"]
[tool.setuptools.packages.find]
include = ["ynca*"]
[project]
name = "ynca"
version = "5.18.0"
description = "Package to control Yamaha receivers that support the YNCA protocol."
readme = "README.md"
requires-python = ">=3.8"
authors = [
{ name = "Michel van de Wetering", email = "[email protected]" },
]
license = { file = "LICENSE.txt" }
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Home Automation",
"Topic :: Software Development :: Libraries",
]
dependencies = ["pyserial>=3.4"]
urls = { Homepage = "https://github.com/mvdwetering/ynca" }
[project.optional-dependencies]
test = [
"mypy==1.11.0",
"ruff==0.5.5",
"pytest>=7.0.0",
"pytest-mock",
"pytest-cov",
"mock-serial==0.0.1",
]