-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
45 lines (42 loc) · 1.28 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
[tool.poetry]
name = "gewv-timeseries-client"
version = "0.5.9"
description = "Client to read & write data from timeseries db."
authors = ["Karl Wolfgang <karl_eugen.wolffgang@tu-dresden.de>", "Martin Altenburger <martin.altenburger@tu-dresden.de", "Paul Seidel <paul.seidel@tu-dresden.de"]
license = "MIT"
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Operating System :: Unix",
"Operating System :: POSIX",
"Operating System :: Microsoft",
"Operating System :: MacOS"
]
homepage = "https://github.com/gewv-tu-dresden/timeseries-client"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.8"
numpy = "^1.23.2"
loguru = "^0.6.0"
influxdb-client = "^1.32.0"
pandas = "^1.4.4"
requests = "^2.28.1"
ciso8601 = "^2.2.0"
urllib3 = "^1.26.12"
[tool.poetry.dev-dependencies]
mypy = "0.991"
black = "^22.6.0"
rope = "^1.3.0"
pylint = "^2.15.0"
pytest = "^7.1.2"
commitizen = "^2.32.2"
flake8 = "^5.0.4"
pytest-asyncio = "^0.19.0"
python-dotenv = "^0.20.0"
twine = "^4.0.2"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"