-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
51 lines (45 loc) · 1.09 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
# TODO this is work in progress
[build-system]
requires = ["setuptools>=61.2"]
build-backend = "setuptools.build_meta"
[project]
name = "intg-sonyavr"
version = "0.2.4"
authors = [
{ name = "Unfolded Circle ApS", email = "[email protected]" }
]
license = { text = "MPL-2.0" }
description = "Remote Two integration for Sony AVRs"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
"Operating System :: OS Independent",
"Topic :: Home Automation",
"Programming Language :: Python :: 3.11",
]
requires-python = ">=3.11"
dependencies = [
"pyee>=9.0",
"ucapi==0.1.7",
]
[project.readme]
file = "README.md"
content-type = "text/markdown; charset=UTF-8"
[project.optional-dependencies]
testing = [
"pylint",
"flake8-docstrings",
"flake8",
"black",
"isort",
]
[tool.setuptools]
platforms = ["any"]
license-files = ["LICENSE"]
include-package-data = false
[tool.setuptools.packages.find]
exclude = ["tests"]
namespaces = false
[tool.isort]
profile = "black"