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 sys
|
||||
from lbry import __name__, __version__
|
||||
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:
|
||||
long_description = fh.read()
|
||||
|
||||
PLYVEL = []
|
||||
if sys.platform.startswith('linux'):
|
||||
PLYVEL.append('plyvel==1.0.5')
|
||||
|
||||
setup(
|
||||
name=__name__,
|
||||
version=__version__,
|
||||
|
@ -53,8 +48,9 @@ setup(
|
|||
'coincurve==11.0.0',
|
||||
'pbkdf2==1.3',
|
||||
'attrs==18.2.0',
|
||||
'pylru==1.1.0'
|
||||
] + PLYVEL,
|
||||
'pylru==1.1.0',
|
||||
'pyzmq==18.1.1',
|
||||
],
|
||||
classifiers=[
|
||||
'Framework :: AsyncIO',
|
||||
'Intended Audience :: Developers',
|
||||
|
|
Loading…
Reference in a new issue