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.
14 lines
448 B
14 lines
448 B
from setuptools import setup |
|
|
|
|
|
setup(name='joinmarketbitcoin', |
|
version='0.9.11dev', |
|
description='Joinmarket client library for Bitcoin coinjoins', |
|
url='https://github.com/JoinMarket-Org/joinmarket-clientserver/tree/master/jmbitcoin', |
|
author='', |
|
author_email='', |
|
license='GPL', |
|
packages=['jmbitcoin'], |
|
python_requires='>=3.7', |
|
install_requires=['python-bitcointx==1.1.3'], |
|
zip_safe=False)
|
|
|