tripod-lambda/pyproject.toml

23 lines
441 B
TOML
Raw Normal View History

2020-05-28 16:03:51 +00:00
[tool.poetry]
name = "tripod"
version = "0.1.0"
description = "really lightweight scaffolding for lambda"
authors = ["James Turk <dev@jamesturk.net>"]
license = "MIT"
[tool.poetry.dependencies]
python = "^3.7"
click = "^7.1.1"
boto3 = "^1.13.18"
pyyaml = "^5.3.1"
2020-05-28 18:25:23 +00:00
attrs = "^19.3.0"
2020-05-28 16:03:51 +00:00
2020-05-28 18:46:57 +00:00
[tool.poetry.scripts]
tripod = 'tripod:cli'
2020-05-28 16:03:51 +00:00
[tool.poetry.dev-dependencies]
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"