From 118c8d61cec8f13e1cc29af0ffcdd973106985de Mon Sep 17 00:00:00 2001 From: James Turk Date: Thu, 28 May 2020 15:37:26 -0400 Subject: [PATCH] 0.1 release, testing --- poetry.lock | 6 +++--- pyproject.toml | 3 ++- tripod.py => tripod_lambda.py | 0 3 files changed, 5 insertions(+), 4 deletions(-) rename tripod.py => tripod_lambda.py (100%) diff --git a/poetry.lock b/poetry.lock index 27233b4..a1a76fd 100644 --- a/poetry.lock +++ b/poetry.lock @@ -48,7 +48,7 @@ description = "Composable command line interface toolkit" name = "click" optional = false python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" -version = "7.1.1" +version = "7.1.2" [[package]] category = "main" @@ -136,8 +136,8 @@ botocore = [ {file = "botocore-1.16.18.tar.gz", hash = "sha256:93574cf95a64c71d35c12c93a23f6214cf2f4b461be3bda3a436381cbe126a84"}, ] click = [ - {file = "click-7.1.1-py2.py3-none-any.whl", hash = "sha256:e345d143d80bf5ee7534056164e5e112ea5e22716bbb1ce727941f4c8b471b9a"}, - {file = "click-7.1.1.tar.gz", hash = "sha256:8a18b4ea89d8820c5d0c7da8a64b2c324b4dabb695804dbfea19b9be9d88c0cc"}, + {file = "click-7.1.2-py2.py3-none-any.whl", hash = "sha256:dacca89f4bfadd5de3d7489b7c8a566eee0d3676333fbb50030263894c38c0dc"}, + {file = "click-7.1.2.tar.gz", hash = "sha256:d2b5255c7c6349bc1bd1e59e08cd12acbbd63ce649f2588755783aa94dfb6b1a"}, ] docutils = [ {file = "docutils-0.15.2-py2-none-any.whl", hash = "sha256:9e4d7ecfc600058e07ba661411a2b7de2fd0fafa17d1a7f7361cd47b1175c827"}, diff --git a/pyproject.toml b/pyproject.toml index d30e314..5411028 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,7 @@ [tool.poetry] name = "tripod-lambda" version = "0.1.0" +readme = "README.md" description = "really lightweight scaffolding for lambda" authors = ["James Turk "] license = "MIT" @@ -13,7 +14,7 @@ pyyaml = "^5.3.1" attrs = "^19.3.0" [tool.poetry.scripts] -tripod = 'tripod:cli' +tripod = 'tripod_lambda:cli' [tool.poetry.dev-dependencies] diff --git a/tripod.py b/tripod_lambda.py similarity index 100% rename from tripod.py rename to tripod_lambda.py