You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Using the Poetry package manager, it is possible to separate standard packages, from packages you only need for development.
For instance, I might develop some code and would install python-lambda because I need it for development and packaging, but I don't actually need it in the actual lambda code environment. For this purpose, Poetry has the ability to install package under the --dev flag so you can separate operational packages from development packages.
It would be great if python-lambda would support the ability to install only operational packages (so we can keep the zip as small as possible)
The text was updated successfully, but these errors were encountered:
Using the Poetry package manager, it is possible to separate standard packages, from packages you only need for development.
For instance, I might develop some code and would install
python-lambda
because I need it for development and packaging, but I don't actually need it in the actual lambda code environment. For this purpose, Poetry has the ability to install package under the--dev
flag so you can separate operational packages from development packages.It would be great if
python-lambda
would support the ability to install only operational packages (so we can keep the zip as small as possible)The text was updated successfully, but these errors were encountered: