Metadata-Version: 2.1
Name: lionweb-python
Version: 0.1.0
Summary: Python Bindings for LionWeb
Home-page: https://github.com/LionWeb-io/lionweb-python
Author: Federico Tomassetti
Author-email: info@lionweb.io
Classifier: Development Status :: 4 - Beta
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: Apache Software License
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE.txt

# LionWeb Python

This library contains an implementation in Python of the LionWeb specifications.

This library is released under the Apache V2 License.

## Linting

```
ruff check src/ tests/
mypy src/
```

## Formatting

```
black src/ tests/
isort src/ tests/
```

## Release process

```
pip install setuptools wheel twine
python setup.py sdist bdist_wheel
```
