From 16f2fab9ac5b91a34a5ce92465a41d642cff72e5 Mon Sep 17 00:00:00 2001 From: Romain Hugonnet Date: Fri, 11 Aug 2023 21:19:22 -0700 Subject: [PATCH] Only use `conda-forge` channel in environment (#398) * Revert back scikit-gstat on conda channels * Modify setup with coreg submodule and description --- dev-environment.yml | 2 +- environment.yml | 5 +---- setup.py | 4 ++-- 3 files changed, 4 insertions(+), 7 deletions(-) diff --git a/dev-environment.yml b/dev-environment.yml index cc250f91..545a908c 100644 --- a/dev-environment.yml +++ b/dev-environment.yml @@ -17,6 +17,7 @@ dependencies: - scipy - tqdm - scikit-image + - scikit-gstat>=1.0 - pytransform3d - geoutils==0.0.11 @@ -40,7 +41,6 @@ dependencies: # - richdem - pip: - - scikit-gstat>=1.0.11 - -e ./ # Development-specific diff --git a/environment.yml b/environment.yml index 377bec35..43a80073 100644 --- a/environment.yml +++ b/environment.yml @@ -17,13 +17,10 @@ dependencies: - scipy - tqdm - scikit-image + - scikit-gstat>=1.0 - pytransform3d - geoutils==0.0.11 - pip - - pip: - - scikit-gstat>=1.0.11 - - # - pip: # - git+https://github.com/GlacioHack/GeoUtils.git diff --git a/setup.py b/setup.py index 7e6fa8db..3b561652 100644 --- a/setup.py +++ b/setup.py @@ -13,14 +13,14 @@ setup( name="xdem", version=FULLVERSION, - description="Set of tools to manipulate Digital Elevation Models (DEMs) ", + description="Analysis of digital elevation models (DEMs)", long_description=LONG_DESCRIPTION, long_description_content_type="text/markdown", url="https://github.com/GlacioHack/xdem", author="The GlacioHack Team", author_email="this-is-not-an-email@a.com", # This is needed for PyPi unfortunately. license="BSD-3", - packages=["xdem"], + packages=["xdem", "xdem.coreg"], install_requires=[ "numpy", "scipy",