-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
43 lines (36 loc) · 811 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
[project]
name = "rislive_py"
description = "Python client for RIS Live BGP monitoring service"
version = "0.0.1"
authors = [{ name = "Tiago Felipe Goncalves", email = "[email protected]" }]
readme = "README.md"
requires-python = ">=3.12"
keywords = ["bgp", "ris", "ripe", "monitoring"]
dependencies = [
"websockets",
"black",
"isort",
"flake8",
"pylint",
"ruff",
"pytest",
"yamllint",
"uv"
]
[project.urls]
documentation = "https://github.com/kiraum/rislive_py/blob/main/README.md"
repository = "https://github.com/kiraum/rislive_py/"
[tool.pylint.messages_control]
disable = [
"format",
]
[tool.isort]
profile = "black"
[tool.black]
line-length = 150
[tool.ruff]
line-length = 150
[tool.pylint.format]
max-line-length = 150
[tool.flake8]
max-line-length = 150