-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
46 lines (38 loc) · 1.09 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
[project]
name = "meshnetworkx"
version = "0.1.2"
description = "Sync and use a networkX graph between multiple hosts through the power of Zenoh storages."
readme = "README.md"
authors = [{ name = "W. Meijer", email = "[email protected]" }]
requires-python = ">=3.10"
dependencies = ["eclipse-zenoh>=1.0.0", "matplotlib>=3.9.2", "networkx>=3.4.1"]
[project.scripts]
[project.urls]
Source = "https://github.com/h0uter/meshnetworkx"
Issues = "https://github.com/h0uter/meshnetworkx/issues"
Documentation = "https://h0uter.github.io/meshnetworkx/"
[project.optional-dependencies]
test = ["pytest>=8.3.3"]
docs = ["mkdocs-material>=9.5.33", "mkdocstrings-python>=1.10.9"]
examples = ["humid>=0.3.1", "nicegui>=2.5.0"]
[tool.uv]
package = true
[tool.ruff]
# extend-exclude = ["examples"]
[tool.ruff.lint]
select = [
"I", # isort
"E", # pycodestyle
"W", # pycodestyle
"B", # bugbear
"F", # pyflakes
"UP", # pyupgrade
"RUF", # ruff
"PL", # pylint
"D", # pydocstyle
]
fixable = [
"I", # isort
]
[tool.ruff.lint.pydocstyle]
convention = "google"