summaryrefslogtreecommitdiffstats
path: root/pyproject.toml
diff options
context:
space:
mode:
Diffstat (limited to 'pyproject.toml')
-rw-r--r--pyproject.toml21
1 files changed, 21 insertions, 0 deletions
diff --git a/pyproject.toml b/pyproject.toml
new file mode 100644
index 0000000..000e037
--- /dev/null
+++ b/pyproject.toml
@@ -0,0 +1,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"