Skip to content

v0.4.2 Modified packaging for package distribution on PyPI for installing into AWS Lambdas.

Compare
Choose a tag to compare
@raylutz raylutz released this 02 May 03:30
· 42 commits to main since this release
0ee451f
v0.4.2  (2024-05-01)
        Modified packaging for package distribution on PyPI to hopefully make it compatible with installing into AWS Lambdas.
            Tried to use pyproject.toml and flit, but flit has poor toml parsing it seems, and could not find a suitable toml file.
            Went back to setup.py and setuptools, but reorganized files into daffodil/src folder which will be included in the distro.
            To use --editable mode for local development, must set PYTHONPATH to refer to the daffodil/src folder.
            In that folder is daffodil/daf.py and daffodil/lib/daf_(name).py 
            To import supporting py files from lib, must use import daffodil.lib.daf_utils as utils, for example.