mirror of
https://github.com/aljazceru/breez-sdk-liquid.git
synced 2025-12-18 14:34:24 +01:00
* Rename namespace * Fix flutter build * Fix kotlin-multiplatform CI * Rename repositories
30 lines
828 B
Python
30 lines
828 B
Python
#!/usr/bin/env python
|
|
|
|
from setuptools import setup
|
|
|
|
LONG_DESCRIPTION = """# Breez Liquid SDK
|
|
Python language bindings for the [Breez Liquid SDK](https://github.com/breez/breez-sdk-liquid).
|
|
|
|
## Installing
|
|
|
|
```shell
|
|
pip install breez_sdk_liquid
|
|
```
|
|
"""
|
|
|
|
setup(
|
|
name="breez_sdk_liquid",
|
|
version="0.2.7.dev9",
|
|
description="Python language bindings for the Breez Liquid SDK",
|
|
long_description=LONG_DESCRIPTION,
|
|
long_description_content_type="text/markdown",
|
|
packages=["breez_sdk_liquid"],
|
|
package_dir={"breez_sdk_liquid": "./src/breez_sdk_liquid"},
|
|
include_package_data=True,
|
|
package_data={"breez_sdk_liquid": ["*.dylib", "*.so", "*.dll"]},
|
|
url="https://github.com/breez/breez-sdk-liquid",
|
|
author="Breez <contact@breez.technology>",
|
|
license="MIT",
|
|
has_ext_modules=lambda: True,
|
|
)
|