Skip to content

Commit

Permalink
Add more dependencies to extras
Browse files Browse the repository at this point in the history
Add certain non-minimal dependencies to extras so they can be installed with `pip install .[all]`.
  • Loading branch information
pagreene committed Jun 5, 2021
1 parent f2bf56d commit ae91469
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,10 @@ def main():
extras_require = {'test': ['nose', 'coverage', 'python-coveralls',
'nose-timer'],
'service': ['flask', 'flask-jwt-extended', 'flask-cors',
'flask-compress'],
'flask-compress', 'numpy'],
'cli': ['click', 'boto3'],
'copy': ['pgcopy']}
'copy': ['pgcopy'],
'misc': ['cachetools', 'matplotlib', 'numpy', 'termcolor']}
extras_require['all'] = list({dep for deps in extras_require.values()
for dep in deps})
setup(name='indra_db',
Expand Down

0 comments on commit ae91469

Please sign in to comment.