forked from SciTools/cartopy
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request SciTools#1890 from greglucas/dev-environment
DOC: Adding an environment file for development
- Loading branch information
Showing
2 changed files
with
56 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
# To set up a development environment using conda, run: | ||
# | ||
# conda env create -f environment.yml | ||
# conda activate cartopy-dev | ||
# pip install -e . | ||
# | ||
name: cartopy-dev | ||
channels: | ||
- conda-forge | ||
dependencies: | ||
- cython>=0.28.5 | ||
- numpy>=1.18 | ||
- shapely>=1.6.4 | ||
- geos>=3.7.2 | ||
- pyshp>=2.1 | ||
- pyproj>=3.0.0 | ||
# PROJ is still required for now | ||
- proj>=8 | ||
# The testing label has the proper version of freetype included | ||
- conda-forge/label/testing::matplotlib-base>=3.1 | ||
|
||
# OWS | ||
- owslib>=0.18.0 | ||
- pillow>=6.1.0 | ||
# Plotting | ||
- gdal>=2.3.2 | ||
- scipy>=1.3.1 | ||
# Testing | ||
- flufl.lock | ||
- packaging>=20 | ||
- pytest | ||
- pytest-xdist | ||
# Documentation | ||
- beautifulsoup4 | ||
- pydata-sphinx-theme | ||
- sphinx | ||
- sphinx-gallery | ||
# Extras | ||
- flake8 | ||
- pykdtree | ||
- requests | ||
- setuptools_scm | ||
- setuptools_scm_git_archive |