mirror of
https://github.com/JoinMarket-Org/joinmarket-clientserver.git
synced 2026-08-18 13:17:51 +02:00
13 lines
441 B
Python
13 lines
441 B
Python
from setuptools import setup
|
|
|
|
|
|
setup(name='joinmarketdaemon',
|
|
version='0.5.3',
|
|
description='Joinmarket client library for Bitcoin coinjoins',
|
|
url='http://github.com/Joinmarket-Org/joinmarket-clientserver/jmdaemon',
|
|
author='',
|
|
author_email='',
|
|
license='GPL',
|
|
packages=['jmdaemon'],
|
|
install_requires=['future', 'txtorcon', 'pyopenssl', 'libnacl', 'joinmarketbase==0.5.3'],
|
|
zip_safe=False)
|