-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpyproject.toml
39 lines (35 loc) · 964 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
35
36
37
38
39
[build-system]
requires = ["setuptools >= 61.0.0"]
build-backend = "setuptools.build_meta"
[project]
name = "blink1"
version = "0.4.0"
description = "Official blink(1) control library"
readme = "README.md"
license = "MIT"
authors = [
{ name = "Salim Fadhley", email = "[email protected]" },
{ name = "Tod E. Kurt", email = "[email protected]" },
]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Testing",
]
dependencies = [
"click",
"hidapi>=0.13.1",
"webcolors",
]
[project.scripts]
blink1-flash = "blink1.flash:flash"
blink1-shine = "blink1.shine:shine"
[project.urls]
Homepage = "https://github.com/todbot/blink1-python"
[tool.setuptools.packages.find]
where = ["."]
include = ["blink1"]