ue_pe_web/scripts/intro_python/pyproject.toml
2024-01-17 16:05:03 +01:00

38 lines
668 B
TOML

[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "intro_python"
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"
readme = "README.md"
license = {text = "EPL-2.0"}
[project.optional-dependencies]
dev = [
"pytest>=7.4.4",
"pylint>=3.0.3",
"black>=23.12.1",
]
[tool.pdm]
distribution = "false"
#[tool.pdm.scripts]
#test = "pytest"
#[tool.pytest.ini_options]
#addopts = [
# "--import-mode=importlib",
#]
#pythonpath = "src"