diff --git a/README.md b/README.md index e1ae9a3..e028f93 100644 --- a/README.md +++ b/README.md @@ -19,9 +19,8 @@ conda environment): ``` conda config --add channels conda-forge conda config --set channel_priority strict -conda create -n pyremap +conda create -y -n pyremap --file dev-spec.txt conda activate pyremap -conda env update -n pyremap -f dev_environment.yaml python -m pip install -e . ``` diff --git a/dev-spec.txt b/dev-spec.txt new file mode 100644 index 0000000..880a25e --- /dev/null +++ b/dev-spec.txt @@ -0,0 +1,23 @@ +# This file may be used to create an environment using: +# $ conda create --name --file + +# Base +python >=3.6 +dask +esmf +nco >=4.8.1 +netcdf4 +numpy +scipy +pyproj +xarray >=0.10.0 + +# Development +pip + +# Documentation +mock +pillow +sphinx +sphinx_rtd_theme +m2r diff --git a/dev_environment.yaml b/dev_environment.yaml deleted file mode 100644 index bde1e01..0000000 --- a/dev_environment.yaml +++ /dev/null @@ -1,23 +0,0 @@ -name: pyremap_dev -channels: - - conda-forge - - defaults -dependencies: - # Base - - python >=3.6 - - dask - - esmf - - nco >=4.8.1 - - netcdf4 - - numpy - - scipy - - pyproj - - xarray >=0.10.0 - # Development - - pip - # Documentation - - mock - - pillow - - sphinx - - sphinx_rtd_theme - - m2r