Skip to content

Commit

Permalink
Add optional requirements to extras_require (#380)
Browse files Browse the repository at this point in the history
  • Loading branch information
nvllsvm authored and martindurant committed Nov 6, 2018
1 parent 07401c5 commit 3ebe787
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,13 @@ def fix_exts(sources):
# 'pytest-runner',
# [p for p in install_requires if p.startswith('numpy')][0]
#],
extras_require={
'brotli': ['brotli'],
'lz4': ['lz4 >= 0.19.1'],
'lzo': ['python-lzo'],
'snappy': ['python-snappy'],
'zstandard': ['zstandard']
},
tests_require=[
'pytest',
'python-snappy',
Expand Down

0 comments on commit 3ebe787

Please sign in to comment.