setup.py 808 B

1234567891011121314151617181920212223242526
  1. #!/usr/bin/env python
  2. from setuptools import setup
  3. from pathlib import Path
  4. this_directory = Path(__file__).parent
  5. long_description = (this_directory / "README.md").read_text()
  6. setup(
  7. name='cashu-sdk',
  8. version='0.0.1',
  9. description="High level client library.",
  10. long_description=long_description,
  11. long_description_content_type='text/markdown',
  12. include_package_data=True,
  13. zip_safe=False,
  14. packages=['cashu_sdk'],
  15. package_dir={'cashu_sdk': './src/cashu-sdk'},
  16. url="https://github.com/thesimplekid/cashu-crab",
  17. author="thesimplekid <tsk@thesimplekid.com>",
  18. license="BSD-3-Clause",
  19. # This is required to ensure the library name includes the python version, abi, and platform tags
  20. # See issue #350 for more information
  21. has_ext_modules=lambda: True,
  22. )