forked from TheMicDiet/chihiros-led-control
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
44 lines (36 loc) · 1.07 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
[build-system]
requires = [
"setuptools==69.0.3",
"setuptools_scm[toml]==8.0.4",
"wheel==0.42.0",
]
build-backend = "setuptools.build_meta"
[project]
name = "chihiros-led-control"
dynamic = ["version", "dependencies"]
description = "Chihiros LED control without the official vendor app"
readme = "README.md"
authors = [
{name = "Michael Dietrich", email = "[email protected]"}
]
license = {text = "MIT"}
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
keywords = ["chihiros", "bluetooth", "lib"]
requires-python = ">=3.10.0"
[project.urls]
"Source Code" = "https://github.com/TheMicDiet/chihiros-led-control"
"Bug Reports" = "https://github.com/TheMicDiet/chihiros-led-control/issues"
"Home-page" = "https://github.com/TheMicDiet/chihiros-led-control"
[tool.setuptools]
platforms = ["any"]
include-package-data = true
[tool.setuptools.packages.find]
include = [
"custom_components*",
]
[tool.setuptools_scm]
[project.scripts]
chihirosctl = "custom_components.chihiros.chihiros_led_control.chihirosctl:app"