Skip to content

Commit

Permalink
Merge pull request #234 from raphaelquast/dev
Browse files Browse the repository at this point in the history
Quick bugfix release to include missing companion-widget source-files on install.
  • Loading branch information
raphaelquast authored Mar 15, 2024
2 parents 1410b52 + 7eef546 commit 0e47497
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docs/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ EOmaps is available on [conda-forge](https://anaconda.org/conda-forge/eomaps) an
conda install -c conda-forge eomaps
```

This will install all required and optional dependencies.
This will install all required dependencies as well as the optional dependencies ``pandas``, ``geopandas``, ``mapclassify``, ``datashader``, ``owslib``, ``requests`` and ``qtpy``


:::{dropdown} Greatly speed up the installation!
Expand Down
9 changes: 6 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@ requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"

[tool.setuptools.packages.find]
include = ["eomaps", "eomaps.scripts", "eomaps.qtcompanion"]
include = ["eomaps", "eomaps.scripts", "eomaps.qtcompanion", "eomaps.qtcompanion.widgets"]

[tool.setuptools.package-data]
eomaps = ["logo.png", "NE_features.json", "qtcompanion/icons/*"]


[project]
name = "eomaps"
version = "8.0.1"
version = "8.0.2"
description = "A library to create interactive maps of geographical datasets."
readme = "README.md"
license = {file = "LICENSE"}
Expand Down Expand Up @@ -66,7 +66,10 @@ wms = [
"requests",
]

shade = ["datashader"]
shade = [
"datashader",
"dask[dataframe]", # to address https://github.com/dask/dask/issues/10995
]

gui = [
"PyQt5",
Expand Down

0 comments on commit 0e47497

Please sign in to comment.