A Python package for ldll.
pip install ldll
from ldll import example_function
result = example_function("example")
To set up the development environment:
- Clone the repository
- Create a virtual environment
- Install development dependencies:
pip install -e ".[dev]"
Update the version in pyproject.toml
before running the following commands.
# Remove relicts from previous builds.
rm -rvf dist
# Build package.
python -m build
# Upload package to test.pypi.org.
python3 -m twine upload --repository testpypi dist/*
Run tests with pytest:
pytest
MIT License - see LICENSE file for details.