-
Notifications
You must be signed in to change notification settings - Fork 72
/
pyproject.toml
33 lines (31 loc) · 1.03 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "apa102-pi"
version = "2.5.3"
authors = [
{ name="Martin Erzberger", email="[email protected]" },
]
description = "Driver for APA102 LEDs on a Raspberry Pi"
readme = "README.md"
requires-python = ">3"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Intended Audience :: Education",
"Operating System :: POSIX :: Linux",
"Topic :: Education",
"Topic :: System :: Hardware :: Hardware Drivers",
"Topic :: Software Development :: Libraries :: Python Modules",
]
keywords = ["apa102", "led", "SK9822", "superled", "dotstar", "raspberry pi"]
dependencies = [
"adafruit-circuitpython-bitbangio",
"adafruit-circuitpython-busdevice",
]
[tool.setuptools]
packages = ["apa102_pi", "apa102_pi.colorschemes", "apa102_pi.driver"]
[project.urls]
Homepage = "https://github.com/tinue/apa102-pi"
Issues = "https://github.com/tinue/apa102-pi/issues"