forked from LBRYCommunity/lbry-sdk
remove plyvel and add pyzmq
This commit is contained in:
parent
6d93f97b51
commit
fd3448ffb8
1 changed files with 3 additions and 7 deletions
10
setup.py
10
setup.py
|
@ -1,5 +1,4 @@
|
||||||
import os
|
import os
|
||||||
import sys
|
|
||||||
from lbry import __name__, __version__
|
from lbry import __name__, __version__
|
||||||
from setuptools import setup, find_packages
|
from setuptools import setup, find_packages
|
||||||
|
|
||||||
|
@ -7,10 +6,6 @@ BASE = os.path.dirname(__file__)
|
||||||
with open(os.path.join(BASE, 'README.md'), encoding='utf-8') as fh:
|
with open(os.path.join(BASE, 'README.md'), encoding='utf-8') as fh:
|
||||||
long_description = fh.read()
|
long_description = fh.read()
|
||||||
|
|
||||||
PLYVEL = []
|
|
||||||
if sys.platform.startswith('linux'):
|
|
||||||
PLYVEL.append('plyvel==1.0.5')
|
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name=__name__,
|
name=__name__,
|
||||||
version=__version__,
|
version=__version__,
|
||||||
|
@ -53,8 +48,9 @@ setup(
|
||||||
'coincurve==11.0.0',
|
'coincurve==11.0.0',
|
||||||
'pbkdf2==1.3',
|
'pbkdf2==1.3',
|
||||||
'attrs==18.2.0',
|
'attrs==18.2.0',
|
||||||
'pylru==1.1.0'
|
'pylru==1.1.0',
|
||||||
] + PLYVEL,
|
'pyzmq==18.1.1',
|
||||||
|
],
|
||||||
classifiers=[
|
classifiers=[
|
||||||
'Framework :: AsyncIO',
|
'Framework :: AsyncIO',
|
||||||
'Intended Audience :: Developers',
|
'Intended Audience :: Developers',
|
||||||
|
|
Loading…
Reference in a new issue