import setuptools from server.version import VERSION setuptools.setup( name='electrumx', version=VERSION, scripts=['electrumx_server.py', 'electrumx_rpc.py'], python_requires='>=3.6', # via environment variables, in which case I've tested with 15.0.4 # "x11_hash" package (1.4) is required to sync DASH network. # "tribus_hash" package is required to sync Denarius network. # "blake256" package is required to sync Decred network. # "xevan_hash" package is required to sync Xuez network. install_requires=['aiorpcX >= 0.5.6', 'plyvel', 'pylru', 'aiohttp >= 1'], packages=setuptools.find_packages(exclude=['tests']), description='ElectrumX Server', author='Neil Booth', author_email='kyuupichan@gmail.com', license='MIT Licence', url='https://github.com/kyuupichan/electrumx', long_description='Server implementation for the Electrum wallet', classifiers=[ 'Development Status :: 5 - Production/Stable', 'Framework :: AsyncIO', 'Topic :: Internet', 'License :: OSI Approved :: MIT License', 'Operating System :: Unix', "Programming Language :: Python :: 3.6", ], )