🎉 initial commit

This commit is contained in:
2026-07-28 19:06:22 +02:00
commit 3219438a22
14 changed files with 568 additions and 0 deletions
+41
View File
@@ -0,0 +1,41 @@
[project]
name = "elironwars-pygame"
version = "0.0.0"
description = "Ce projet est un plugin du moteur de jeu elironwars (d-crawler)."
readme = "README.md"
keywords = []
requires-python = ">= 3.14"
dependencies = [
"pygame >= 2.6.1",
]
authors = [
{ name = "Raggaroth", email = "b.baudouin@pm.me" },
{ name = "Toucan", email = "anthony.melin@laposte.net" },
]
maintainers = [
{ name = "Raggaroth", email = "b.baudouin@pm.me" }
]
[project.urls]
Homepage = "https://gitea.raggaroth-factory.fr/public/elironwars-pygame"
Documentation = "https://gitea.raggaroth-factory.fr/public/elironwars-pygame/wiki"
Repository = "https://gitea.raggaroth-factory.fr/public/elironwars-pygame.git"
Issues = "https://gitea.raggaroth-factory.fr/public/elironwars-pygame/issues"
Changelog = "https://github.com/me/spam/blob/master/CHANGELOG.md"
[build-system]
requires = ["setuptools >= 77.0.3"]
build-backend = "setuptools.build_meta"
[project.entry-points."elironwars.ui"]
pygame = "elironwars_pygame.main:PygameUi"
[tool.isort]
profile = "black"
src_paths = ["src", "tests"]
known_first_party = ["elironwars"]
[tool.autopep8]
max_line_length = 120
in-place = true
recursive = true