-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
35 lines (31 loc) · 897 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src/"]
exclude = ["bpm/ftpsclient"]
[tool.setuptools.package-data]
"bpm" = ["*.json"]
[project]
name = "bambu-printer-manager"
version = "0.4.1"
authors = [
{ name="Shell M. Shrader", email="[email protected]" },
]
description = "A pure python library for managing Bambu Labs printers"
readme = "README.md"
requires-python = ">=3.12.1"
classifiers = [
"Programming Language :: Python :: 3",
"License :: Freely Distributable",
"Operating System :: OS Independent",
]
dependencies = [
"webcolors",
"paho-mqtt",
"mkdocstrings[python]>=0.18",
]
[project.urls]
Homepage = "https://github.com/synman/bambu-printer-manager"
Documentation = "https://synman.github.io/bambu-printer-manager/"
Issues = "https://github.com/synman/bambu-printer-manager/issues"