only install plyvel on linux

This commit is contained in:
Lex Berezhny 2019-02-22 19:25:27 -05:00
parent 09726876ad
commit 4eff0d2660

View file

@ -14,11 +14,10 @@ REQUIRES = [
'pbkdf2',
'cryptography',
'attrs',
'plyvel',
'pylru'
]
if sys.platform.startswith('win32'):
REQUIRES.remove('plyvel')
if sys.platform.startswith('linux'):
REQUIRES.append('plyvel')
setup(