Skip to content

Commit

Permalink
Update requirements.
Browse files Browse the repository at this point in the history
  • Loading branch information
simonpf committed May 20, 2024
1 parent 3324145 commit c5c26a6
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .readthedocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ python:
- method: pip
path: .
extra_requirements:
- sphinx
- "docs"

sphinx:
builder: html
Expand Down
1 change: 1 addition & 0 deletions gprof_nn/training.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@


from gprof_nn import sensors
import gprof_nn.logging


LOGGER = logging.Logger(__name__)
Expand Down
9 changes: 6 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,16 @@
author_email="simon.pfreundschuh@chalmers.se",
install_requires=[
"numpy", "scipy", "xarray", "torch", "appdirs", "rich",
"quantnn>=0.0.5dev", "h5py", "netCDF4", "h5netcdf", "pandas"
"quantnn>=0.0.5dev", "h5py", "netCDF4", "h5netcdf", "pandas",
],
extras_require = {
'development': [
'pytest', 'pykdtree'
]
},
],
'docs': [
"sphinx", "jupyter-book"
]
},
entry_points = {
'console_scripts': ['gprof_nn=gprof_nn.cli:gprof_nn'],
},
Expand Down

0 comments on commit c5c26a6

Please sign in to comment.