mirror of
https://github.com/JoinMarket-Org/joinmarket-clientserver.git
synced 2026-08-17 13:07:51 +02:00
15 lines
549 B
Python
15 lines
549 B
Python
from setuptools import setup
|
|
|
|
|
|
setup(name='joinmarketclient',
|
|
version='0.5.3',
|
|
description='Joinmarket client library for Bitcoin coinjoins',
|
|
url='http://github.com/Joinmarket-Org/joinmarket-clientserver/jmclient',
|
|
author='',
|
|
author_email='',
|
|
license='GPL',
|
|
packages=['jmclient'],
|
|
install_requires=['future', 'configparser;python_version<"3.2"',
|
|
'joinmarketbase==0.5.3', 'mnemonic', 'argon2_cffi',
|
|
'bencoder.pyx>=2.0.0', 'pyaes'],
|
|
zip_safe=False)
|