[build-system]
requires = [
    "setuptools>=61.0.0", # First version of setuptools to support pyproject.toml configuration
    "wheel"
]
build-backend = "setuptools.build_meta"

[project]
name = "humidity"
authors = [
    {name = "Samuel Schmidt"},
    {name = "Steve Cope"},
]
readme = "README.md"
requires-python = ">=3.7"
license = {text = "MIT"}
classifiers = [
    "Programming Language :: Python :: 3",
]
dependencies = [
    "pandas",
    "matplotlib",
    "paho-mqtt",
    'importlib-metadata; python_version<"3.8"',
]
version = "1.0.0"

[project.scripts]
hello-world = "timmins:hello_world"