forked from simon7426/InfluxDB-Flask
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
43 lines (39 loc) · 974 Bytes
/
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
[tool.poetry]
name = "InfluxDB-Flask"
version = "0.1.2"
description = "InfluxDB-Flask adds influxdb-client-python support to Flask."
authors = ["simon.islam <[email protected]>"]
license = "BSD-3-Clause"
readme = "README.md"
keywords = [
"Flask",
"InfluxDB",
]
include = [
"LICENSE",
"tests/",
]
repository = "https://github.com/simon7426/InfluxDB-Flask"
documentation = "https://influxdb-flask.readthedocs.io/en/latest/"
[tool.poetry.dependencies]
python = "^3.7"
Flask = "^2.0.3"
influxdb-client = "^1.25.0"
[tool.poetry.dev-dependencies]
pytest = "7.0.1"
pytest-cov = "^3.0.0"
black = "^22.1.0"
isort = "^5.10.1"
flake8 = "^4.0.1"
bandit = "^1.7.2"
safety = "^1.10.3"
Sphinx = "4.3.2"
Pallets-Sphinx-Themes = "^2.0.2"
poetry2setup = "^1.0.0"
coverage = "^6.3.2"
tox = "^3.24.5"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.urls]
issues = "https://github.com/simon7426/InfluxDB-Flask/issues"