-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (37 loc) · 939 Bytes
/
Copy pathpyproject.toml
File metadata and controls
44 lines (37 loc) · 939 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
[build-system]
requires = [
"setuptools>=68",
]
build-backend = "setuptools.build_meta"
[project]
name = "OctoPrint-ShutdownPrinter"
version = "1.0.11"
description = "This plugin work with plugin OctoPrint-TPLinkSmartplug, it send the Gcode M81 with IP after print complete for shutdown printer"
authors = [
{ name = "devildant", email = "info@example.com" },
]
requires-python = ">=3.7,<4"
dependencies = [
"OctoPrint>=1.11.7"
]
dynamic = [
"license",
]
[project.entry-points."octoprint.plugin"]
shutdownprinter = "octoprint_shutdownprinter"
[project.urls]
Homepage = "https://github.com/devildant/OctoPrint-ShutdownPrinter"
[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_shutdownprinter",
"octoprint_shutdownprinter.*",
]