forked from Gr1N/aiotelegraf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
54 lines (46 loc) · 901 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
44
45
46
47
48
49
50
51
52
53
54
[tool.black]
line-length = 88
py36 = true
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| \.vscode
| _build
| buck-out
| build
| dist
)/
'''
[tool.poetry]
name = "aiotelegraf"
version = "0.3.0-alpha.0"
description = "AsyncIO Python client for sending metrics to Telegraf"
authors = [
"Nikita Grishko <[email protected]>"
]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/Gr1N/aiotelegraf"
repository = "https://github.com/Gr1N/aiotelegraf"
keywords = ["asyncio", "telegraf", "influx", "tick"]
classifiers = [
"Topic :: Software Development :: Libraries :: Python Modules"
]
[tool.poetry.dependencies]
python = "^3.6"
pytelegraf = "0.*"
[tool.poetry.dev-dependencies]
black = "*"
flake8 = "*"
flake8-bugbear = "*"
isort = "*"
mypy = "*"
pytest = "~3.6"
pytest-asyncio = "*"
pytest-cov = "*"
tox = "^3.0.0"