-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (36 loc) · 1.01 KB
/
pyproject.toml
File metadata and controls
44 lines (36 loc) · 1.01 KB
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", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "OctoPrint-BambuConnector"
version = "0.0.1"
description = "Enables connecting to Bambu printers."
authors = [
{name = "jneilliii", email = "jneilliii+github@gmail.com"},
{name = "Gina Häußge", email = "gina@octoprint.org"}
]
readme = {file = "README.md", content-type = "markdown"}
dynamic = [
"license"
]
requires-python = ">=3.11, <4"
# any additional requirements (besides OctoPrint) should be listed here
dependencies = [
"bambu-printer-manager>=1.0.0rc6",
"typing-extensions ; python_version<'3.12'",
]
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
include = [
"octoprint_bambu_connector",
"octoprint_bambu_connector.*"
]
[project.entry-points."octoprint.plugin"]
bambu_connector = "octoprint_bambu_connector"
[project.urls]
Homepage = "https://github.com/jneilliii/OctoPrint-BambuConnector"
[project.optional-dependencies]
develop = [
"go-task-bin"
]