26 lines
440 B
TOML
26 lines
440 B
TOML
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[project]
|
|
name = "mu5001tool"
|
|
version = "0.0.1"
|
|
authors = [
|
|
{ name="clerie", email="hallo@clerie.de" },
|
|
]
|
|
description = ""
|
|
readme = "README.md"
|
|
license = { file="LICENSE" }
|
|
requires-python = ">=3.11"
|
|
|
|
dependencies = [
|
|
"requests",
|
|
]
|
|
|
|
[project.scripts]
|
|
mu5001tool = "mu5001tool:__main__.main"
|
|
|
|
[project.urls]
|
|
"Source" = "https://git.clerie.de/clerie/mu5001tool"
|
|
|