-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (39 loc) · 958 Bytes
/
pyproject.toml
File metadata and controls
47 lines (39 loc) · 958 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
[build-system]
requires = [
"setuptools>=77",
"setuptools-scm>=8",
]
build-backend = "setuptools.build_meta"
[project]
name = "OctoRelay"
dynamic = ["version"]
description = "A plugin that adds buttons to the navbar for toggling GPIO on the RPi. It can be used for turning relays on and off."
authors = [
{ name = "Boris Burgstaller", email = "raspi@burgstaller.net" },
]
requires-python = ">=3.9,<4"
dependencies = [
"gpiozero",
"lgpio",
"RPi.GPIO",
]
license = "AGPL-3.0-or-later"
[project.entry-points."octoprint.plugin"]
octorelay = "octoprint_octorelay"
[project.urls]
Homepage = "https://github.com/borisbu/OctoRelay"
[project.optional-dependencies]
develop = [
"go-task-bin",
]
[project.readme]
file = "README.md"
content-type = "text/markdown"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
include = [
"octoprint_octorelay",
"octoprint_octorelay.*",
]
[tool.setuptools_scm]