8 changed files with 33 additions and 6 deletions
@ -0,0 +1 @@ |
|||||
|
/path/to/electrumx_server.py |
@ -1 +0,0 @@ |
|||||
/path/to/repos/electrumx/server_main.py |
|
@ -0,0 +1,24 @@ |
|||||
|
import setuptools |
||||
|
from server.version import VERSION |
||||
|
|
||||
|
|
||||
|
setuptools.setup( |
||||
|
name='electrumx', |
||||
|
version=VERSION.split()[-1], |
||||
|
scripts=['electrumx_server.py', 'electrumx_rpc.py'], |
||||
|
python_requires='>=3.5', |
||||
|
install_requires=['plyvel', 'aiohttp >= 1'], |
||||
|
packages=setuptools.find_packages(), |
||||
|
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 :: 3 - Alpha', |
||||
|
'Topic :: Internet', |
||||
|
'License :: OSI Approved :: MIT License', |
||||
|
'Operating System :: Unix', |
||||
|
], |
||||
|
) |
Loading…
Reference in new issue