This library contains an implementation in Python of the LionWeb specifications.
This library is released under the Apache V2 License.
ruff check src/ tests/
mypy src/
black src/ tests/
isort src/ tests/
pip install build
python -m build
- Update version in pyproject.toml and setup.py
- Create tag:
git tag -a v0.1.1 -m "Version 0.1.1"
- Release on Pypi:
pip install setuptools wheel twine
python setup.py sdist bdist_wheel
twine upload dist/*
- Push tag