#!/usr/bin/env python

from setuptools import setup

from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()

setup(
    name='cashu-protocol',
    version='0.0.1',
    description="Rust implementation of cashu.",
    long_description=long_description,
    long_description_content_type='text/markdown',
    include_package_data = True,
    zip_safe=False,
    packages=['cashu_protocol'],
    package_dir={'cashu_protocol': './src/cashu'},
    package_data={'cashu_protocol': ['*.so', 'lib*']},
    url="https://github.com/thesimplekid/cashu-crab",
    author="thesimplekid <tsk@thesimplekid.com>",
    license="BSD-3-Clause",
     # 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,
)