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', 'pbkdf2',
'cryptography', 'cryptography',
'attrs', 'attrs',
'plyvel',
'pylru' 'pylru'
] ]
if sys.platform.startswith('win32'): if sys.platform.startswith('linux'):
REQUIRES.remove('plyvel') REQUIRES.append('plyvel')
setup( setup(