From c1c765af0d901e5727d429ed46ca7f581578c165 Mon Sep 17 00:00:00 2001 From: Paulo Alexandre Mello Date: Wed, 11 Oct 2023 00:32:50 -0300 Subject: [PATCH] chore: adding poetry as package manager --- pyproject.toml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 pyproject.toml diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..d6e6b28 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,14 @@ +[tool.poetry] +name = "goes-py" +version = "1.0.0" +description = "a python lib can be useful to retrieve GOES satellite dataset on AWS Bucket" +authors = ["Paulo Alexandre Mello "] +readme = "README.md" + +[tool.poetry.dependencies] +python = "^3.11" + + +[build-system] +requires = ["poetry-core"] +build-backend = "poetry.core.masonry.api"