mirror of https://github.com/pallets/flask.git
18 lines
381 B
TOML
18 lines
381 B
TOML
[project]
|
|
name = "flask-example-celery"
|
|
version = "1.0.0"
|
|
description = "Example Flask application with Celery background tasks."
|
|
readme = "README.md"
|
|
classifiers = ["Private :: Do Not Upload"]
|
|
dependencies = ["flask", "celery[redis]"]
|
|
|
|
[build-system]
|
|
requires = ["flit_core<4"]
|
|
build-backend = "flit_core.buildapi"
|
|
|
|
[tool.flit.module]
|
|
name = "task_app"
|
|
|
|
[tool.ruff]
|
|
src = ["src"]
|