aboutsummaryrefslogtreecommitdiffstats
path: root/pyproject.toml
blob: 000e03714a55165672175d18ece600538abd0405 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
[tool.uv.workspace]
members = [
    "packages/meshbay-common",
    "packages/meshbay-hub",
    "packages/meshbay-node",
]

[tool.ruff]
line-length = 100
target-version = "py312"

[tool.ruff.lint]
select = ["E", "F", "I", "UP"]

[tool.pytest.ini_options]
testpaths = [
    "packages/meshbay-common/tests",
    "packages/meshbay-hub/tests",
    "packages/meshbay-node/tests",
]
asyncio_mode = "auto"