-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathpyproject.toml
55 lines (48 loc) · 1.54 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
[project]
name = "anycast-healthchecker"
description = "A healthchecker for Anycasted Services"
authors = [{name = "Pavlos Parissis", email = "pavlos.parissis@gmail.com"}]
license = {text = "Apache 2.0"}
keywords = ["healthchecker", "anycast", "ECMP"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"Natural Language :: English",
"Operating System :: POSIX",
"Programming Language :: Python",
"Topic :: System :: Monitoring",
"Topic :: Utilities",
]
dynamic = ["version", "readme"]
dependencies = [
"docopt",
"prometheus-client",
"python-json-logger",
]
[project.urls]
documentation = "https://github.com/unixsurfer/anycast_healthchecker#readme"
repository = "https://github.com/unixsurfer/anycast_healthchecker"
[project.scripts]
anycast-healthchecker = 'anycast_healthchecker.main:main'
[tool.setuptools]
packages = ["anycast_healthchecker"]
[tool.setuptools.dynamic]
version = {attr = "anycast_healthchecker.__version__"}
readme = {file = ["README.rst"], content-type = "text/x-rst"}
[build-system]
requires = ["setuptools>=61", "wheel"]
build-backend = "setuptools.build_meta"
[tool.isort]
# https://pycqa.github.io/isort/docs/configuration/profiles.html
profile = "black"
[tool.pylint.'MESSAGES CONTROL']
disable = [
"line-too-long",
"missing-module-docstring",
"too-many-arguments",
"too-many-instance-attributes",
"too-many-locals",
"too-many-branches",
]