forked from kyuupichan/electrumx
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix electrum_rpc.py Rename server_main.py to electrumx_server.py
- Loading branch information
Neil Booth
committed
Nov 5, 2016
1 parent
7019b29
commit 6946863
Showing
8 changed files
with
33 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
/path/to/electrumx_server.py |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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='[email protected]', | ||
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', | ||
], | ||
) |