Skip to content

Instantly share code, notes, and snippets.

@eifuentes
Last active June 7, 2021 23:45
Show Gist options
  • Save eifuentes/335e8ddd6d9b8039befe182c7fd8f535 to your computer and use it in GitHub Desktop.
Save eifuentes/335e8ddd6d9b8039befe182c7fd8f535 to your computer and use it in GitHub Desktop.
Poetry Basic Package
[tool.poetry]
name = "app"
version = "0.1.0"
description = "App Desc"
authors = ["me <me@gmail.com>"]
[tool.poetry.dependencies]
python = ">=3.7.1,<3.10"
pandas = "^1.2.4"
boto3 = "^1.17.89"
pyarrow = "^4.0.1"
awswrangler = "^2.8.0"
[tool.poetry.dev-dependencies]
isort = "^5.8.0"
black = "^21.5b2"
flake8 = "^3.9.2"
mypy = "^0.812"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment