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
577 B
16 lines
577 B
from setuptools import setup |
|
|
|
|
|
setup(name='joinmarketdaemon', |
|
version='0.9.10dev', |
|
description='Joinmarket client library for Bitcoin coinjoins', |
|
url='https://github.com/JoinMarket-Org/joinmarket-clientserver/tree/master/jmdaemon', |
|
author='', |
|
author_email='', |
|
license='GPL', |
|
packages=['jmdaemon'], |
|
install_requires=['txtorcon==22.0.0', 'cryptography==3.3.2', |
|
'pyopenssl==21.0.0', 'libnacl==1.8.0', |
|
'joinmarketbase==0.9.10dev'], |
|
python_requires='>=3.6', |
|
zip_safe=False)
|
|
|