pysondehub/pyproject.toml

27 wiersze
722 B
TOML

2021-02-02 00:33:53 +00:00
[tool.poetry]
name = "sondehub"
2023-04-22 08:35:14 +00:00
version = "0.3.2"
description = "SDK to access SondeHub open data, and helpers for uploading telemetry."
2021-02-02 00:33:53 +00:00
authors = ["Michaela <git@michaela.lgbt>"]
2021-02-02 02:29:52 +00:00
readme = "README.md"
homepage = "https://github.com/projecthorus/pysondehub"
repository = "https://github.com/projecthorus/pysondehub.git"
documentation = "https://github.com/projecthorus/pysondehub"
license = "GPL-3.0-or-later"
2021-02-02 00:33:53 +00:00
[tool.poetry.dependencies]
2021-02-02 00:47:04 +00:00
python = "^3.6"
2021-02-02 00:33:53 +00:00
paho-mqtt = "^1.5.1"
2021-02-10 06:18:10 +00:00
boto3 = "^1.14.44"
requests = "^2.24.0"
python-dateutil = "^2.8"
2021-02-02 00:33:53 +00:00
[tool.poetry.dev-dependencies]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
2022-09-10 00:52:35 +00:00
sondehub = 'sondehub:__main__.main'