Initial Structure

This commit is contained in:
Arbion Halili
2025-06-17 03:55:41 +01:00
parent db1a5252a2
commit ac2dfa6565
14 changed files with 290 additions and 0 deletions

23
pyproject.toml Normal file
View File

@@ -0,0 +1,23 @@
[project]
name = "exo"
version = "0.2.0"
description = "Exo"
readme = "README.md"
requires-python = ">=3.13"
dependencies = []
[dependency-groups]
dev = [
"poethepoet>=0.35.0",
"pytest>=8.4.0",
"ruff>=0.11.13",
]
[tool.uv.workspace]
members = [
"master", "worker", "shared",
]
[tool.poe.tasks]
fmt = { shell = "ruff format .", help = "Format the code" }
test = { shell = "pytest master worker shared", help = "Run the tests" }