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
472 B
14 lines
472 B
from setuptools import setup |
|
|
|
|
|
setup(name='joinmarketdaemon', |
|
version='0.6.2', |
|
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.2'], |
|
python_requires='>=3.3', |
|
zip_safe=False)
|
|
|