WIP: readme and pyproject

This commit is contained in:
ADRN 2024-01-17 16:05:03 +01:00
parent 1e58a17821
commit 6ccea7e186
2 changed files with 21 additions and 6 deletions

View file

@ -28,6 +28,17 @@ On va utiliser [PDM](https://pdm-project.org/latest/) pour empaqueter notre proj
pip install pdm
```
We can now run the `pdm` command. Let's build our project just to check that every thing is alright:
*
On peut désormais lancer la commande `pdm`. Essayons de _build_ notre programme pour être sûr⋅e que tout va bien :
*
```bash
pdm build
```
## student and complete

View file

@ -9,6 +9,7 @@ version = "0.1.0"
description = "Default template for PDM package"
authors = [
{name = "boris", email = "boris@deuxfleurs.fr"},
{name = "adrien", email = "aluxey@univ-lille.fr"},
]
dependencies = []
requires-python = ">=3.9"
@ -24,10 +25,13 @@ dev = [
]
[tool.pdm]
package-type = "application"
distribution = "false"
[tool.pytest.ini_options]
addopts = [
"--import-mode=importlib",
]
pythonpath = "src"
#[tool.pdm.scripts]
#test = "pytest"
#[tool.pytest.ini_options]
#addopts = [
# "--import-mode=importlib",
#]
#pythonpath = "src"