Skip to content

Commit

Permalink
Merge pull request #20 from TomAugspurger/fixups
Browse files Browse the repository at this point in the history
Fixups
  • Loading branch information
TomAugspurger committed Jul 14, 2020
2 parents 50b465b + f559d8a commit 822ab2b
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 6 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
__pycache__
*.egg-info
.hypothesis
.hypothesis
build/
dist/
5 changes: 4 additions & 1 deletion .readthedocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,7 @@ sphinx:
python:
version: 3.8
install:
- requirements: docs/requirements.txt
- method: pip
path: .
extra_requirements:
- docs
1 change: 0 additions & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@
"sphinx.ext.autodoc",
"sphinx.ext.autosummary",
"numpydoc",
"nbsphinx",
"IPython.sphinxext.ipython_directive",
"IPython.sphinxext.ipython_console_highlighting",
"sphinxcontrib.srclinks",
Expand Down
2 changes: 0 additions & 2 deletions docs/requirements.txt

This file was deleted.

14 changes: 13 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,21 @@

here = os.path.dirname(__file__)

install_requires = []
install_requires = [
"dask[array]",
"zarr",
]
doc_requires = [
"sphinx",
"sphinxcontrib-srclinks",
"sphinx-pangeo-theme",
"numpydoc",
"IPython",
]

extras_require = {
"complete": ["dask[array]", "zarr", "pyyaml", "fsspec"],
"docs": doc_requires,
}
extras_require["dev"] = extras_require["complete"] + [
"pytest",
Expand Down

0 comments on commit 822ab2b

Please sign in to comment.