Skip to content

Commit

Permalink
Merge pull request #190 from indralab/setup
Browse files Browse the repository at this point in the history
Make termcolor and cachetools default dependencies
  • Loading branch information
bgyori committed Oct 6, 2021
2 parents 0453dbb + 3ae9b6a commit 285948f
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 @@ -10,7 +10,7 @@ def main():
'flask-compress', 'numpy'],
'cli': ['click', 'boto3'],
'copy': ['pgcopy'],
'misc': ['cachetools', 'matplotlib', 'numpy', 'termcolor']}
'misc': ['matplotlib', 'numpy']}
extras_require['all'] = list({dep for deps in extras_require.values()
for dep in deps})
setup(name='indra_db',
Expand All @@ -22,7 +22,8 @@ def main():
author_email='patrick_greene@hms.harvard.edu',
packages=packages,
include_package_data=True,
install_requires=['sqlalchemy<1.4', 'psycopg2'],
install_requires=['sqlalchemy<1.4', 'psycopg2', 'cachetools',
'termcolor'],
extras_require=extras_require,
entry_points="""
[console_scripts]
Expand Down

0 comments on commit 285948f

Please sign in to comment.