2023-02-09 19:06:55 +03:00
|
|
|
[project]
|
|
|
|
name = "moonraker"
|
|
|
|
dynamic = ["version"]
|
|
|
|
description = "API Server for Klipper"
|
|
|
|
authors = [
|
2023-02-27 18:43:24 +03:00
|
|
|
{name = "Eric Callahan", email = "arksine.code@gmail.com"},
|
2023-02-09 19:06:55 +03:00
|
|
|
]
|
|
|
|
dependencies = [
|
2023-10-10 23:30:39 +03:00
|
|
|
"tornado==6.2.0 ; python_version=='3.7'",
|
2024-01-12 00:39:48 +03:00
|
|
|
"tornado==6.4.0 ; python_version>='3.8'",
|
2023-02-09 19:06:55 +03:00
|
|
|
"pyserial==3.4",
|
|
|
|
"pyserial-asyncio==0.6",
|
2023-10-10 23:30:39 +03:00
|
|
|
"pillow==9.5.0 ; python_version=='3.7'",
|
2024-04-03 19:12:57 +03:00
|
|
|
"pillow==10.3.0 ; python_version>='3.8'",
|
2023-10-10 23:30:39 +03:00
|
|
|
"streaming-form-data==1.11.0 ; python_version=='3.7'",
|
2024-05-13 01:01:35 +03:00
|
|
|
"streaming-form-data==1.15.0 ; python_version>='3.8'",
|
2024-01-12 00:39:48 +03:00
|
|
|
"distro==1.9.0",
|
2023-02-09 19:06:55 +03:00
|
|
|
"inotify-simple==1.3.5",
|
2024-01-12 00:39:48 +03:00
|
|
|
"libnacl==2.1.0",
|
2023-02-09 19:06:55 +03:00
|
|
|
"paho-mqtt==1.6.1",
|
2023-12-28 15:35:30 +03:00
|
|
|
"zeroconf==0.131.0",
|
2024-02-01 18:35:01 +03:00
|
|
|
"preprocess-cancellation==0.2.1",
|
2024-05-06 23:51:27 +03:00
|
|
|
"jinja2==3.1.4",
|
2023-02-09 19:06:55 +03:00
|
|
|
"dbus-next==0.2.3",
|
2024-05-13 01:01:35 +03:00
|
|
|
"apprise==1.8.0",
|
2023-12-20 00:55:15 +03:00
|
|
|
"ldap3==2.9.1",
|
2024-05-13 01:01:35 +03:00
|
|
|
"python-periphery==2.4.1"
|
2023-02-09 19:06:55 +03:00
|
|
|
]
|
|
|
|
requires-python = ">=3.7"
|
|
|
|
readme = "README.md"
|
|
|
|
license = {text = "GPL-3.0-only"}
|
|
|
|
keywords = ["klipper", "3D printing", "server", "moonraker"]
|
|
|
|
classifiers = [
|
|
|
|
"Development Status :: 4 - Beta",
|
|
|
|
"Topic :: Internet :: WWW/HTTP :: HTTP Servers",
|
|
|
|
"Programming Language :: Python :: 3",
|
|
|
|
"Programming Language :: Python :: 3.7",
|
|
|
|
"Programming Language :: Python :: 3.8",
|
|
|
|
"Programming Language :: Python :: 3.9",
|
|
|
|
"Programming Language :: Python :: 3.10",
|
|
|
|
"Programming Language :: Python :: 3.11",
|
|
|
|
]
|
|
|
|
|
|
|
|
[project.urls]
|
|
|
|
homepage = "https://github.com/Arksine/moonraker"
|
|
|
|
repository = "https://github.com/Arksine/moonraker"
|
|
|
|
documentation = "https://moonraker.readthedocs.io"
|
|
|
|
changelog = "https://moonraker.readthedocs.io/en/latest/changelog/"
|
|
|
|
|
2023-06-27 15:14:36 +03:00
|
|
|
[project.optional-dependencies]
|
|
|
|
msgspec=["msgspec>=0.18.4 ; python_version>='3.8'"]
|
|
|
|
uvloop=["uvloop>=0.17.0"]
|
|
|
|
speedups = ["moonraker[msgspec,uvloop]"]
|
|
|
|
|
2023-02-09 19:06:55 +03:00
|
|
|
[tool.pdm.version]
|
|
|
|
source = "scm"
|
|
|
|
write_to = "moonraker/__version__.py"
|
|
|
|
write_template = "__version__ = '{}'\n"
|
|
|
|
|
|
|
|
[tool.pdm.build]
|
|
|
|
excludes = ["./**/.git", "moonraker/moonraker.py"]
|
|
|
|
includes = ["moonraker"]
|
|
|
|
editable-backend = "path"
|
|
|
|
custom-hook = "scripts/pdm_build_dist.py"
|
|
|
|
|
|
|
|
[project.scripts]
|
|
|
|
moonraker = "moonraker.server:main"
|
|
|
|
|
|
|
|
[build-system]
|
2023-02-27 18:43:24 +03:00
|
|
|
requires = ["pdm-backend"]
|
2023-02-09 19:06:55 +03:00
|
|
|
build-backend = "pdm.backend"
|