view pyproject.toml @ 29:fceebb462380 default tip

Added tag v0.4.1 for changeset e5f285ea68f8
author Paul Fisher <paul@pfish.zone>
date Sun, 02 Mar 2025 19:37:42 -0500
parents 2ec668fdec88
children
line wrap: on
line source

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

[project]
name = "weatherlog"
dynamic = ["version"]
requires-python = ">=3.7"
dependencies = [
    "attrs",
    "pymongo",
    "pytz",
    "requests",
    "RPi.bme280",
    "smbus2",
    "toml",
]

[project.scripts]
weatherlogd = "weatherlog.daemon:main"

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

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