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.
16 lines
600 B
16 lines
600 B
from setuptools import setup |
|
|
|
|
|
setup(name='joinmarketclient', |
|
version='0.9.7', |
|
description='Joinmarket client library for Bitcoin coinjoins', |
|
url='https://github.com/JoinMarket-Org/joinmarket-clientserver/tree/master/jmclient', |
|
author='', |
|
author_email='', |
|
license='GPL', |
|
packages=['jmclient'], |
|
install_requires=['joinmarketbase==0.9.7', 'mnemonic', 'argon2_cffi', |
|
'bencoder.pyx>=2.0.0', 'pyaes', 'klein==20.6.0', |
|
'pyjwt==2.4.0', 'autobahn==20.12.3'], |
|
python_requires='>=3.6', |
|
zip_safe=False)
|
|
|