Init poetry and create base structure

Init poetry and create base structure
This commit is contained in:
2025-12-14 13:00:24 +03:00
parent 4a42981024
commit d438f7bf5b
6 changed files with 1765 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
[project]
name = "aetherbackend"
version = "0.1.0"
description = ""
authors = [
{name = "lorsan",email = "stasstrochewskij@gmail.com"}
]
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"fastapi[standard] (>=0.124.4,<0.125.0)",
"sqlalchemy (>=2.0.45,<3.0.0)"
]
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"