bdk-ffi/bdk-python/setup.py

36 lines
985 B
Python
Raw Normal View History

2021-12-07 10:25:42 -05:00
#!/usr/bin/env python
from setuptools import setup
2021-12-07 10:25:42 -05:00
LONG_DESCRIPTION = """# bdkpython
2022-06-23 15:21:48 -04:00
The Python language bindings for the [Bitcoin Dev Kit](https://github.com/bitcoindevkit).
## Install the package
```shell
pip install bdkpython
```
## Simple example
```python
import bdkpython as bdk
2024-03-26 11:57:50 -04:00
```
"""
2021-12-07 10:25:42 -05:00
setup(
name="bdkpython",
version="1.0.0a8.dev",
2022-08-05 10:31:24 -04:00
description="The Python language bindings for the Bitcoin Development Kit",
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
include_package_data = True,
zip_safe=False,
packages=["bdkpython"],
package_dir={"bdkpython": "./src/bdkpython"},
url="https://github.com/bitcoindevkit/bdk-ffi",
author="Bitcoin Dev Kit Developers <dev@bitcoindevkit.org>",
license="MIT or Apache 2.0",
# This is required to ensure the library name includes the python version, abi, and platform tags
# See issue #350 for more information
has_ext_modules=lambda: True,
2021-12-07 10:25:42 -05:00
)