cashu pypi

This commit is contained in:
callebtc
2022-09-18 23:52:04 +03:00
parent f02ac8d3ee
commit a33bbe0a30
5 changed files with 93 additions and 7 deletions

34
setup.py Normal file
View File

@@ -0,0 +1,34 @@
import setuptools
from os import path
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, "README.md"), encoding="utf-8") as f:
long_description = f.read()
with open("requirements.txt") as f:
requirements = f.read().splitlines()
entry_points = {"console_scripts": ["cashu = wallet.cashu:cli"]}
setuptools.setup(
name="cashu",
version="0.1.3",
description="Ecash wallet and mint with Bitcoin Lightning support",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/callebtc/cashu",
author="Calle",
author_email="calle@protonmail.com",
license="MIT",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires=">=3.7",
install_requires=requirements,
include_package_data=True,
entry_points=entry_points,
)