Skip to content

Commit

Permalink
updating binder requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
choldgraf committed Mar 9, 2020
1 parent 2ef8631 commit e94d5bf
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion binder/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
numpy
pandas
matplotlib
nteract-scrapbook
nbformat
./
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,8 @@ def read_reqs(fname):
long_description = read(os.path.join(os.path.dirname(__file__), "README.md"))
requirements = read(os.path.join(os.path.dirname(__file__), "requirements.txt"))
dev_reqs = read_reqs('requirements-dev.txt')
extras_require = {"test": dev_reqs, "dev": dev_reqs}
binder_reqs = read_reqs('binder/requirements.txt')
extras_require = {"test": dev_reqs, "dev": dev_reqs, "binder": binder_reqs}

setup(
name=name,
Expand Down

0 comments on commit e94d5bf

Please sign in to comment.