Initial commit

This commit is contained in:
2026-05-22 18:14:35 +02:00
commit d6900dbf80
9 changed files with 2368 additions and 0 deletions

29
pyproject.toml Normal file
View File

@@ -0,0 +1,29 @@
[project]
name = "dpg-map"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
authors = [
{ name = "Hector van der Aa", email = "hector@h3cx.dev" }
]
requires-python = ">=3.14"
dependencies = [
"dearpygui>=2.3.1",
"pillow>=12.2.0",
"platformdirs>=4.9.6",
"requests>=2.34.2",
]
[project.scripts]
dpg-map = "dpg_map:main"
[build-system]
requires = ["uv_build>=0.11.14,<0.12.0"]
build-backend = "uv_build"
[dependency-groups]
dev = [
"pyright>=1.1.409",
"pytest>=9.0.3",
"ruff>=0.15.14",
]