Tweak setup.py
This commit is contained in:
parent
2cfcbc0b7e
commit
9f43fb8eb8
15
setup.py
15
setup.py
@ -1,10 +1,10 @@
|
|||||||
import setuptools
|
import setuptools
|
||||||
from electrumx.server.version import VERSION
|
from electrumx.server.version import VERSION
|
||||||
|
version = VERSION.rpartition(' ')[-1]
|
||||||
|
|
||||||
setuptools.setup(
|
setuptools.setup(
|
||||||
name='electrumx',
|
name='electrumX-kyuupichan',
|
||||||
version=VERSION,
|
version=version,
|
||||||
scripts=['electrumx_server', 'electrumx_rpc'],
|
scripts=['electrumx_server', 'electrumx_rpc'],
|
||||||
python_requires='>=3.6',
|
python_requires='>=3.6',
|
||||||
# via environment variables, in which case I've tested with 15.0.4
|
# via environment variables, in which case I've tested with 15.0.4
|
||||||
@ -13,19 +13,22 @@ setuptools.setup(
|
|||||||
# "blake256" package is required to sync Decred network.
|
# "blake256" package is required to sync Decred network.
|
||||||
# "xevan_hash" package is required to sync Xuez network.
|
# "xevan_hash" package is required to sync Xuez network.
|
||||||
install_requires=['aiorpcX >= 0.5.6', 'plyvel', 'pylru', 'aiohttp >= 1'],
|
install_requires=['aiorpcX >= 0.5.6', 'plyvel', 'pylru', 'aiohttp >= 1'],
|
||||||
packages=setuptools.find_packages(include=('electrumx.*',)),
|
packages=setuptools.find_packages(include=('electrumx*',)),
|
||||||
description='ElectrumX Server',
|
description='ElectrumX Server',
|
||||||
author='Neil Booth',
|
author='Neil Booth',
|
||||||
author_email='kyuupichan@gmail.com',
|
author_email='kyuupichan@gmail.com',
|
||||||
license='MIT Licence',
|
license='MIT Licence',
|
||||||
url='https://github.com/kyuupichan/electrumx',
|
url='https://github.com/kyuupichan/electrumx',
|
||||||
long_description='Server implementation for the Electrum wallet',
|
long_description='Server implementation for the Electrum protocol',
|
||||||
|
download_url=('https://github.com/kyuupichan/electrumX/archive/'
|
||||||
|
f'{version}.tar.gz'),
|
||||||
classifiers=[
|
classifiers=[
|
||||||
'Development Status :: 5 - Production/Stable',
|
'Development Status :: 5 - Production/Stable',
|
||||||
'Framework :: AsyncIO',
|
'Framework :: AsyncIO',
|
||||||
'Topic :: Internet',
|
|
||||||
'License :: OSI Approved :: MIT License',
|
'License :: OSI Approved :: MIT License',
|
||||||
'Operating System :: Unix',
|
'Operating System :: Unix',
|
||||||
"Programming Language :: Python :: 3.6",
|
"Programming Language :: Python :: 3.6",
|
||||||
|
"Topic :: Database",
|
||||||
|
'Topic :: Internet',
|
||||||
],
|
],
|
||||||
)
|
)
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user