diff --git a/pyproject.toml b/pyproject.toml index 143f9f2..e194109 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -12,6 +12,9 @@ boto3 = "^1.13.18" pyyaml = "^5.3.1" attrs = "^19.3.0" +[tool.poetry.scripts] +tripod = 'tripod:cli' + [tool.poetry.dev-dependencies] [build-system] diff --git a/tripod.py b/tripod.py index 55688ba..f033e1c 100755 --- a/tripod.py +++ b/tripod.py @@ -13,6 +13,7 @@ import typing @attr.s(auto_attribs=True) class Function: name: str + description: str runtime: str role_arn: str handler: str