-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
63 lines (54 loc) · 1.29 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
[tool.poetry]
name = "prometheus-ecs-discoverer"
version = "3.3.3"
description = "Prometheus Service Discovery for AWS ECS"
authors = ["Tim Schwenke <[email protected]>"]
license = "Apache-2.0"
readme = "README.md"
repository = "https://github.com/trallnag/prometheus-ecs-discoverer"
keywords = ["prometheus", "aws", "ecs", "metrics"]
[tool.poetry.dependencies]
python = "^3.9"
boto3 = "^1.16.00"
dynaconf = "^3.1.2"
loguru = "^0.5.3"
prettyprinter = "^0.18.0"
prometheus-client = "^0.8.0"
[tool.poetry.dev-dependencies]
black = "^21.7b0"
flake8 = "^3.9.2"
moto = "^2.2.2"
mypy = "^0.910"
pdoc = "^7.4.0"
pytest = "^6.2.4"
pytest-cov = "^2.12.1"
requests = "^2.26.0"
types-python-dateutil = "^0.1.6"
[tool.black]
line-length = 90
exclude = "tests/test_discovery_integration_data.py"
[tool.mypy]
explicit_package_bases = true
namespace_packages = true
scripts_are_modules = true
warn_redundant_casts = true
warn_return_any = true
warn_unreachable = true
warn_unused_configs = true
warn_unused_ignores = true
exclude = """
(?x)(
test_discovery_integration_data.py
)
"""
[[tool.mypy.overrides]]
module = [
"boto3.*",
"botocore.*",
"moto.*",
"prometheus_client.*",
]
ignore_missing_imports = true
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"