-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
31 lines (29 loc) · 811 Bytes
/
pyproject.toml
File metadata and controls
31 lines (29 loc) · 811 Bytes
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
[project]
name = "btledstrip"
version = "0.2.1"
authors = [
]
description = "Python LED Strip Bluetooth Controller API"
readme = "README.md"
packages = [
{include = "btledstrip"},
{include = "btledstrip/py.typed"},
]
requires-python = ">=3.12"
dependencies = [
"bleak==0.22.1",
"dbus-fast==2.21.2",
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[project.urls]
Homepage = "https://github.com/dougppaz/python-bt-led-strip"
Documentation = "https://python-bt-led-strip.readthedocs.io/en/latest/"
Issues = "https://github.com/dougppaz/python-bt-led-strip/issues"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"