24 lines
476 B
TOML
24 lines
476 B
TOML
[tool.poetry]
|
|
name = "tripod-lambda"
|
|
version = "0.1.0"
|
|
readme = "README.md"
|
|
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"
|
|
attrs = "^19.3.0"
|
|
|
|
[tool.poetry.scripts]
|
|
tripod = 'tripod_lambda:cli'
|
|
|
|
[tool.poetry.dev-dependencies]
|
|
|
|
[build-system]
|
|
requires = ["poetry>=0.12"]
|
|
build-backend = "poetry.masonry.api"
|