-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
29 lines (27 loc) · 842 Bytes
/
pyproject.toml
File metadata and controls
29 lines (27 loc) · 842 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
[project]
name = "pyalphasign"
version = "0.1.0"
authors = [
{ name="prototux", email="jason@prototux.net" },
]
description = "An implementation of Alpha/BetaBrite/Adaptive LED signs protocol"
keywords = ["alphasign", "betabrite", "LED Sign", "alpha protocol", "adaptive displays"]
readme = "README.md"
license = {file = "LICENSE"}
requires-python = ">=3.7"
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
dependencies = [
"Pillow>9.4.0",
"pyserial>3.4"
]
[project.urls]
"Homepage" = "https://github.com/prototux/python-alphasign"
"Bug Tracker" = "https://github.com/prototux/python-alphasign/issues"
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"