From 67b33b786dec15070f5c8596d5b00839d595ff25 Mon Sep 17 00:00:00 2001 From: defparam Date: Mon, 15 Jul 2024 17:09:29 -0400 Subject: [PATCH] Initial Version --- README.md | 2 +- setup.py | 6 +++++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index bb40417..2faf925 100644 --- a/README.md +++ b/README.md @@ -78,7 +78,7 @@ Web-CLI: 1) Open chrome and simply browse to your lambda URL w/key Terminal-CLI: -1) While in the lemma directory: `pip3 install .` +1) While in the lemma directory: `pip3 install .` (The Terminal-CLI is also available on pypi: `pip install lemmacli`) 2) Invoke: `lemma` 3) When asked about the lambda URL, paste it into the prompt. This URL will be saved at `~/.lemma/lemma.ini` diff --git a/setup.py b/setup.py index 7d86936..efff069 100644 --- a/setup.py +++ b/setup.py @@ -3,6 +3,10 @@ setup( name='lemmacli', version='0.1.0', packages=['lemma'], + description='Run commandline tools on AWS Lambda', + url='https://github.com/defparam/lemma', + author='defparam', + license='Apache 2.0', include_package_data=True, install_requires=[ "requests", @@ -17,4 +21,4 @@ setup( 'Operating System :: OS Independent', ], python_requires='>=3.6', -) \ No newline at end of file +)