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"