From 0d41da65446fc47064b6b1cf1ea90fde94774439 Mon Sep 17 00:00:00 2001 From: anthony-melin Date: Fri, 17 Jul 2026 20:25:23 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=8E=89=20pyproject=20file?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pyproject.toml | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 pyproject.toml diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..d6d66cf --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,41 @@ +[project] +name = "elironwars-python" +version = "0.0.0" +description = "Lovely Spam! Wonderful Spam!" +readme = "README.md" +keywords = [] +requires-python = ">= 3.14" +dependencies = [ + "pydantic >= 2.13.4", +] +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-python" +Documentation = "https://gitea.raggaroth-factory.fr/public/elironwars-python/wiki" +Repository = "https://gitea.raggaroth-factory.fr/public/elironwars-python.git" +Issues = "https://gitea.raggaroth-factory.fr/public/elironwars-python/issues" +Changelog = "https://github.com/me/spam/blob/master/CHANGELOG.md" + +[build-system] +requires = ["setuptools >= 77.0.3"] +build-backend = "setuptools.build_meta" + +[project.scripts] +elironwars = "elironwars.app:app" + +[tool.isort] +profile = "black" +src_paths = ["src", "tests"] +known_first_party = ["elironwars"] + +[tool.autopep8] +max_line_length = 120 +in-place = true +recursive = true