38 lines
693 B
TOML
38 lines
693 B
TOML
[project]
|
|
name = "school-management"
|
|
version = "0.1.0"
|
|
description = "Application web de gestion scolaire"
|
|
requires-python = ">=3.9"
|
|
dependencies = [
|
|
"Flask>=2.3.3",
|
|
"Flask-SQLAlchemy>=3.0.5",
|
|
"Flask-WTF>=1.1.1",
|
|
"WTForms>=3.0.1",
|
|
"python-dotenv>=1.0.0",
|
|
"pydantic>=2.0.0",
|
|
"Flask-Mail>=0.9.1",
|
|
"premailer>=3.10.0",
|
|
]
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["."]
|
|
|
|
[tool.uv]
|
|
dev-dependencies = [
|
|
"pytest>=7.4.0",
|
|
"pytest-flask>=1.2.0",
|
|
"pytest-cov>=4.1.0",
|
|
]
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
aiosmtpd = "^1.4.6"
|
|
|
|
[dependency-groups]
|
|
dev = [
|
|
"psutil>=7.0.0",
|
|
]
|