fix: change config to work also on debian 11

This commit is contained in:
Omid Zamani
2026-01-02 18:55:48 +01:00
parent 68277cc929
commit 928b41aae2
11 changed files with 146 additions and 28 deletions

29
pyproject.toml Normal file
View File

@@ -0,0 +1,29 @@
[project]
name = "relay-ir"
version = "0.1.0"
description = "Chatmail relay workspace"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"chatmaild",
"cmdeploy",
"sphinx",
"sphinxcontrib-mermaid",
"sphinx-autobuild",
"furo",
]
[tool.uv]
managed = true
package = false
[tool.uv.workspace]
members = ["chatmaild", "cmdeploy"]
[tool.uv.sources]
chatmaild = { workspace = true }
cmdeploy = { workspace = true }
[build-system]
requires = ["setuptools>=61"]
build-backend = "setuptools.build_meta"