Initial Version

This commit is contained in:
defparam 2024-07-15 17:09:29 -04:00
parent 4d1a8b2ab7
commit 67b33b786d
2 changed files with 6 additions and 2 deletions

View File

@ -78,7 +78,7 @@ Web-CLI:
1) Open chrome and simply browse to your lambda URL w/key 1) Open chrome and simply browse to your lambda URL w/key
Terminal-CLI: 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` 2) Invoke: `lemma`
3) When asked about the lambda URL, paste it into the prompt. This URL will be saved at `~/.lemma/lemma.ini` 3) When asked about the lambda URL, paste it into the prompt. This URL will be saved at `~/.lemma/lemma.ini`

View File

@ -3,6 +3,10 @@ setup(
name='lemmacli', name='lemmacli',
version='0.1.0', version='0.1.0',
packages=['lemma'], 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, include_package_data=True,
install_requires=[ install_requires=[
"requests", "requests",