forked from BapRx/alert-exporter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
49 lines (41 loc) · 1.35 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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "alert_exporter"
version = "0.3.0"
keywords = ["alert_exporter", "alert", "monitoring", "prometheus", "cloudwatch"]
authors = [{ name = "Baptiste ROUX", email = "[email protected]" }]
description = "Extract alerts configured in different sources (eg: Prometheus Rules, CloudWatch Alarms, etc.)"
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.7"
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
]
dependencies = ["kubernetes", "boto3", "humanize", "jinja2"]
[project.scripts]
alert-exporter = "alert_exporter.cli:main"
[project.urls]
Homepage = "https://github.com/BapRx/alert-exporter"
"Bug Tracker" = "https://github.com/BapRx/alert-exporter/issues"
changelog = "https://github.com/BapRx/alert-exporter/blob/master/CHANGELOG.md"
[tool.setuptools.packages.find]
include = ["alert_exporter", "alert_exporter.sources"]
exclude = ["alert_exporter.templates"]
namespaces = false
[tool.setuptools.package-data]
"*" = ["*.jinja"]
[tool.black]
line-length = 88
target-version = ['py36', 'py37', 'py38']
include = '\.pyi?$'
[tool.isort]
atomic = true
profile = "black"
line_length = 88
skip_gitignore = true
[tool.ruff]
line-length = 88