mirror of https://github.com/Mickhat/lemma.git
Initial Version
This commit is contained in:
parent
4d1a8b2ab7
commit
67b33b786d
|
|
@ -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`
|
||||
|
||||
|
|
|
|||
6
setup.py
6
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',
|
||||
)
|
||||
)
|
||||
|
|
|
|||
Loading…
Reference in New Issue