forked from derkalle4/python3-idotmatrix-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
34 lines (29 loc) · 788 Bytes
/
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
[project]
name = "iDotMatrix-Client"
version = "0.0.1"
description = "configure any iDotMatrix compatible 16x16 or 32x32 pixel display without chinese android apps."
readme = "README.md"
requires-python = ">=3.7"
license = {file = "LICENSE"}
keywords = ["idotmatrix", "bluetooth", "kandru"]
authors = [
{name = "Kalle Minkner", email = "[email protected]" }
]
maintainers = [
{name = "Kalle Minkner", email = "[email protected]" }
]
dependencies = [
"asyncio",
"idotmatrix==0.0.4",
"bleak",
"pillow",
"argparse"
]
[project.urls]
"Homepage" = "https://kandru.net"
"Source" = "https://github.com/derkalle4/python3-idotmatrix-client"
[build-system]
requires = ["setuptools>=43.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
py-modules = []