Include python dependencies
See original GitHub issueHi All,
Two feature suggestions…
Pull in python dependencies Is there any appetite to have a command line option that pulls in python dependencies during the the deploy command?
Separate source and build directories
Executing pip install -r requirements.txt -t /path/to/source/
creates a lot of noise in the source directory. It would be great if we could create a separate build directory to create the lambda zip package.
I’ve got some time to spend on this if people think it could be useful.
Cheers,
Anthony.
Issue Analytics
- State:
- Created 7 years ago
- Reactions:4
- Comments:7 (1 by maintainers)
Top Results From Across the Web
How to include library dependencies with a python project?
Is there any way I can include all the libraries that my project uses with my Python files (or perhaps set up an...
Read more >How to Package Python Dependencies for Publication
Click to package Python dependencies for publication by using the package development process library and utility Setuptools.
Read more >Managing Application Dependencies
This tutorial walks you through the use of Pipenv to manage dependencies for an application. It will show you how to install and...
Read more >How to package a python project with all of its dependencies ...
I'm writing this post to show the way I think is the correct way for installing and packaging python apps with all their...
Read more >Specifying Dependencies — Python Packaging Tutorial
Sometimes you'll want to use packages that are properly arranged with setuptools, but aren't published to PyPI. In those cases, you can specify...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
I worked around this problem by creating a script which: 0. Have
source: _build/
in kappa.yml_build
directorycp _src/* _build
It would be nice if kappa can do something similar.
Looking at https://github.com/garnaat/kappa/blob/develop/kappa/function.py#L69 seems that dependencies could be installed somewhere else and then listed in the
kappa.yml
file.I didn’t try that yet, but can someone confirm if my understanding is correct?