-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpyproject.toml
45 lines (42 loc) · 1.16 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
# SPDX-FileCopyrightText: 2025 Tony Smith (@smittytone)
#
# SPDX-License-Identifier: MIT
[build-system]
requires = ["setuptools>=61.0.0"]
build-backend = "setuptools.build_meta"
[project]
name = "ht16k33-python"
description = "MicroPython and CircuitPython library for HT16K33 LED matrices and segment displays."
version = "4.2.0"
readme = "README.md"
authors = [
{ name = "Tony Smith", email = "support@smittytone.net" },
{ name = "Ubi de Feo" },
{ name = "Sebastian Romero" },
{ name = "akbiocca" },
]
maintainers = [{ name = "Tony Smith", email = "support@smittytone.net" }]
urls = { Homepage = "https://github.com/smittytone/HT16K33-Python" }
keywords = [
"ht16k33",
"vk16k33",
"led",
"matrix",
"segment",
"bar graph",
"displays",
"hardware",
"micropython",
"circuitpython",
]
license = { text = "MIT" }
classifiers = [
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Embedded Systems",
"Topic :: System :: Hardware",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
]
[tool.setuptools.packages]
find = {}