-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
30 lines (28 loc) · 899 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "neopolitan"
version = "0.1.40"
authors = [
{ name = "alyo" },
]
description = "Neopolitan: a library for displaying text on LED boards"
readme = "README.md"
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"pygame ; platform_machine == 'x86_64'",
"rpi_ws281x ; platform_machine == 'armv7l'",
"adafruit-circuitpython-neopixel ; platform_machine == 'armv7l'",
"RPi.GPIO ; platform_machine == 'armv7l'",
"rpi_ws281x ; platform_machine == 'aarch64'",
"adafruit-circuitpython-neopixel ; platform_machine == 'aarch64'",
"RPi.GPIO ; platform_machine == 'aarch64'"
]
[project.urls]
"Homepage" = "https://github.com/alyoshenka/neopolitan"