-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
46 lines (43 loc) · 1.38 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
[tool.poetry]
name = "wfudptools"
version = "5.3.0"
description = "WeatherFlow UDP API compliant python tools"
authors = ["Vince Skahan <[email protected]>"]
license = "GPL3"
readme = "README-pypi.md"
homepage = "https://github.com/vinceskahan/wfudptools"
repository = "https://github.com/vinceskahan/wfudptools"
classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
'Topic :: Scientific/Engineering :: Physics'
]
[tool.poetry.dependencies]
python = "^3.7"
influxdb = "5.3.1"
paho-mqtt = "1.6.1"
certifi = "2022.12.7"
charset-normalizer = "3.0.1"
idna = "3.4"
six = "1.16.0"
urllib3 = "1.26.14"
msgpack = "1.0.4"
python-dateutil = "2.8.2"
pytz = "2022.7.1"
requests = "2.28.2"
[tool.poetry.scripts]
wfudplistener = 'wfudptools.listener:main'
wfudpsimulator = 'wfudptools.simulator:main'
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"