view pyproject.toml @ 39:b77c8e7d2742

Use zoneinfo rather than pytz.
author Paul Fisher <paul@pfish.zone>
date Tue, 01 Apr 2025 15:54:21 -0400
parents d5a18ecebf47
children
line wrap: on
line source

[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"

[project]
name = "weather-server"
dynamic = ["version"]
requires-python = ">=3.9"
dependencies = [
    "attrs",
    "flask",
    "flup",
    "pymongo",
]

[tool.hatch.version]
source = "vcs"

[tool.hatch.build.targets.sdist]
include = [
    "/weather_server",
]