From ca72855cd1c7897f14b42bcc908db733772e6277 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marius=20V=C3=A5rdal?= <122878177+MariusVaardal@users.noreply.github.com> Date: Fri, 5 Dec 2025 14:50:32 +0100 Subject: [PATCH] fix: fix error in README file (pyproject.yaml should be pyproject.toml) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index cf349a65..4ee05e5a 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Python Project Template -This project is a template for creating Python projects that follows the Python Standards declared in PEP 621. It uses a pyproject.yaml file to configure the project and Flit to simplify the build process and publish to PyPI. Flit simplifies the build and packaging process for Python projects by eliminating the need for separate setup.py and setup.cfg files. With Flit, you can manage all relevant configurations within the pyproject.toml file, streamlining development and promoting maintainability by centralizing project metadata, dependencies, and build specifications in one place. +This project is a template for creating Python projects that follows the Python Standards declared in PEP 621. It uses a pyproject.toml file to configure the project and Flit to simplify the build process and publish to PyPI. Flit simplifies the build and packaging process for Python projects by eliminating the need for separate setup.py and setup.cfg files. With Flit, you can manage all relevant configurations within the pyproject.toml file, streamlining development and promoting maintainability by centralizing project metadata, dependencies, and build specifications in one place. ## Project Organization