22 lines
473 B
TOML
22 lines
473 B
TOML
[project]
|
|
name = "cronmatt"
|
|
version = "0.1.0"
|
|
description = "Manage tasks on a schedule."
|
|
readme = "README.md"
|
|
authors = [{ name = "GitMatt", email = "git@publicmatt.com" }]
|
|
requires-python = ">=3.12"
|
|
dependencies = [
|
|
"celery>=5.4.0",
|
|
"click>=8.1.8",
|
|
"django-ninja>=1.4.0",
|
|
"pydantic-settings>=2.8.1",
|
|
"uvicorn>=0.34.0",
|
|
]
|
|
|
|
[project.scripts]
|
|
cronmatt = "cronmatt:__main__.main"
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|