view pyproject.toml @ 46:74b57044b2bd default tip

Added tag v0.2.2 for changeset 10bde12a9163
author Paul Fisher <paul@pfish.zone>
date Tue, 01 Apr 2025 16:31:00 -0400
parents b77c8e7d2742
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",
]