feat: Initial, empty version

This commit is contained in:
2025-05-21 11:34:26 +02:00
commit 9cea7870d3
9 changed files with 454 additions and 0 deletions

21
pyproject.toml Normal file
View File

@@ -0,0 +1,21 @@
# SPDX-FileCopyrightText: 2025 2025
# SPDX-FileContributor: Gergely Polonkai
#
# SPDX-License-Identifier: GPL-3.0-or-later
[project]
name = "gm-assistant"
version = "0.1.0"
description = "Game Masters Assistant"
authors = [
{name = "Gergely Polonkai",email = "gergely@polonkai.eu"}
]
license = {text = "GPL-3.0-or-later"}
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
]
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"