OctoprintReservations/pyproject.toml

28 lines
568 B
TOML
Raw Normal View History

2022-03-29 14:28:25 -04:00
[project]
name = "octoprint_reservations"
2023-09-22 15:42:56 -04:00
version = "0.1.2"
2022-03-29 14:28:25 -04:00
description = ""
authors = [{ name = "Adam Goldsmith", email = "adam@adamgoldsmith.name" }]
license-expression = "MIT"
dependencies = [
2023-09-22 15:42:32 -04:00
"google-api-python-client~=2.100",
"google-auth-oauthlib~=1.1",
"octorest~=0.4",
"ruamel-yaml~=0.17",
2022-03-29 14:28:25 -04:00
]
requires-python = ">=3.9"
[project.scripts]
octoreservations = "octoprint_reservations.main:main"
2022-03-29 14:28:25 -04:00
[tool.pdm]
[tool.pdm.dev-dependencies]
dev = []
[tool.black]
line-length = 88
2022-03-29 14:28:25 -04:00
[build-system]
2023-09-22 15:35:49 -04:00
requires = ["pdm-backend"]
build-backend = "pdm.backend"