21 lines
408 B
TOML
21 lines
408 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",
|
|
]
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["."]
|
|
|
|
[tool.uv]
|
|
dev-dependencies = [] |