This commit is contained in:
Eden Kirin
2023-08-25 21:54:30 +02:00
commit 97be2871d4
6 changed files with 555 additions and 0 deletions

20
pyproject.toml Normal file
View File

@ -0,0 +1,20 @@
[tool.poetry]
name = "litestar-machines"
version = "0.1.0"
description = ""
authors = ["Eden Kirin <eden@ekirin.com>"]
readme = "README.md"
packages = [{include = "litestar_machines"}]
[tool.poetry.dependencies]
python = "^3.11"
litestar = "^2.0.1"
uvicorn = "^0.23.2"
[tool.poetry.group.dev.dependencies]
watchfiles = "^0.20.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"