Initial commit

This commit is contained in:
Paillat
2024-07-30 10:49:05 +02:00
committed by GitHub
commit 5583d15cda
41 changed files with 1803 additions and 0 deletions

9
docs/pyproject.md Normal file
View File

@@ -0,0 +1,9 @@
# pypyroject.toml
The pyproject.toml is the main configuration file used for the Python project.
It contains configurations for building, linting, testing, and publishing the Python package.
The pyproject.toml replaces the "setup.py" package. When using 'flit' or 'poetry', only the pyproject.toml is required.
This project currently uses 'flit', but in the future may also include a 'poetry' example. Both are considered viable options.
When using setuptools, and setup.cfg is still required.