mirror of
https://github.com/JoinMarket-Org/joinmarket-clientserver.git
synced 2026-08-20 13:37:23 +02:00
14 lines
476 B
Python
14 lines
476 B
Python
from setuptools import setup
|
|
|
|
|
|
setup(name='joinmarketdaemon',
|
|
version='0.6.3.1',
|
|
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.6.3.1'],
|
|
python_requires='>=3.3',
|
|
zip_safe=False)
|