initial commit

This commit is contained in:
Felix Rudat
2026-01-27 09:13:54 +01:00
commit 19d462a4aa
13 changed files with 1298 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
[build-system]
requires = ["setuptools>=69", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "planka-cli"
version = "0.1.0"
description = "CLI for Planka using plankapy."
requires-python = ">=3.10"
dependencies = [
"plankapy",
"typer",
"python-dotenv",
"rich",
]
[project.scripts]
planka-cli = "scripts.planka_cli:app"
[dependency-groups]
dev = [
"pyinstaller",
]
[tool.setuptools]
packages = ["scripts"]