From 35127bf299d88956a75b652981e4d47287af7596 Mon Sep 17 00:00:00 2001 From: Ryana May Que Date: Fri, 6 Sep 2024 07:59:21 +0800 Subject: [PATCH] add: use poetry --- pyproject.toml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 pyproject.toml diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..5527ef0 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,15 @@ +[tool.poetry] +name = "sparkle" +version = "0.1.0" +description = "" +authors = ["Ryana May Que "] +readme = "README.md" + +[tool.poetry.dependencies] +python = "^3.12" +fastapi = {extras = ["standard"], version = "^0.113.0"} + + +[build-system] +requires = ["poetry-core"] +build-backend = "poetry.core.masonry.api"