Files
MSE-CyberSec-DevSecOps/src/pyproject.toml
2025-03-19 22:09:48 +01:00

35 lines
653 B
TOML

[project]
name = "flask-api-calculator-demo"
version = "0.1.1"
description = "Default template for PDM package"
authors = [
{name = "Michael Mäder", email = "michael.maeder@hefr.ch"},
]
dependencies = [
"pytest>=8.0.2",
"pytest-cov>=4.1.0",
"Flask>=3.0.2",
"flask-wtf>=1.2.1",
"dotenv>=0.9.9",
]
requires-python = ">3.11"
readme = "README.md"
license = {text = "MIT"}
[tool.pdm]
distribution = false
[tool.pdm.scripts]
flask.cmd = "flask run -p 5000 --debug"
flask.env = {FLASK_ENV = "development"}
shell.cmd = "sh"
[dependency-groups]
test = [
"pytest>=8.3.5",
"pytest-cov>=6.0.0",
]
lint = [
"flake8>=7.1.2",
]