Python SDK for DERO Merchant REST API
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
728B

  1. import setuptools
  2. with open("README.md") as f:
  3. readme = f.read()
  4. with open("LICENSE") as f:
  5. license = f.read()
  6. setuptools.setup(
  7. name="dero-merchant-python-sdk",
  8. version="1.0.0",
  9. author="Peppinux",
  10. description="Python SDK for DERO Merchant REST API",
  11. long_description=readme,
  12. long_description_content_type="text/markdown",
  13. url="https://github.com/peppinux/dero-merchant-python-sdk",
  14. license=license,
  15. packages=setuptools.find_packages(),
  16. classifiers=[
  17. "Programming Language :: Python :: 3.6",
  18. "License :: OSI Approved :: MIT License",
  19. "Operating System :: OS Independent",
  20. "Intended Audience :: Developers",
  21. ],
  22. python_requires=">=3.6",
  23. )