diff --git a/core/README.md b/core/README.md deleted file mode 100644 index cc0380f6..00000000 --- a/core/README.md +++ /dev/null @@ -1,5 +0,0 @@ -# eolearn.core subpackage - -The deprecated way to install `eolearn.core`. See [migration guide](https://github.com/sentinel-hub/eo-learn/issues/733) on how to correctly install the `eo-learn` package. - -Installs requirements and a dummy package that is detected by `eo-learn` but otherwise does not change anything. diff --git a/core/deprecated_eolearn_core/__init__.py b/core/deprecated_eolearn_core/__init__.py deleted file mode 100644 index 5b601886..00000000 --- a/core/deprecated_eolearn_core/__init__.py +++ /dev/null @@ -1 +0,0 @@ -__version__ = "1.5.0" diff --git a/core/requirements-ray.txt b/core/requirements-ray.txt deleted file mode 100644 index 48d77c94..00000000 --- a/core/requirements-ray.txt +++ /dev/null @@ -1 +0,0 @@ -ray[default] diff --git a/core/requirements.txt b/core/requirements.txt deleted file mode 100644 index 56205006..00000000 --- a/core/requirements.txt +++ /dev/null @@ -1 +0,0 @@ -eo-learn diff --git a/core/setup.py b/core/setup.py deleted file mode 100644 index d091ceff..00000000 --- a/core/setup.py +++ /dev/null @@ -1,71 +0,0 @@ -from __future__ import annotations - -import os - -from setuptools import find_packages, setup - - -def get_long_description(): - this_directory = os.path.abspath(os.path.dirname(__file__)) - - with open(os.path.join(this_directory, "README.md"), encoding="utf-8") as f: - return f.read() - - -def parse_requirements(file): - with open(os.path.join(os.path.dirname(__file__), file)) as requirements_file: - return sorted({line.partition("#")[0].strip() for line in requirements_file} - set("")) - - -def get_version(): - path = os.path.join(os.path.dirname(__file__), "deprecated_eolearn_core", "__init__.py") - with open(path) as version_file: - for line in version_file: - if line.find("__version__") >= 0: - version = line.split("=")[1].strip() - version = version.strip('"').strip("'") - return version - - -setup( - name="eo-learn-core", - python_requires=">=3.8", - version=get_version(), - description="Core Machine Learning Framework at Sinergise", - long_description=get_long_description(), - long_description_content_type="text/markdown", - url="https://github.com/sentinel-hub/eo-learn", - project_urls={ - "Documentation": "https://eo-learn.readthedocs.io", - "Source Code": "https://github.com/sentinel-hub/eo-learn", - "Bug Tracker": "https://github.com/sentinel-hub/eo-learn/issues", - "Forum": "https://forum.sentinel-hub.com", - }, - author="Sinergise EO research team", - author_email="eoresearch@sinergise.com", - license="MIT", - packages=find_packages(), - install_requires=parse_requirements("requirements.txt"), - extras_require={ - "RAY": parse_requirements("requirements-ray.txt"), - }, - classifiers=[ - "Development Status :: 5 - Production/Stable", - "Intended Audience :: Developers", - "Intended Audience :: Education", - "Intended Audience :: Science/Research", - "License :: OSI Approved :: MIT License", - "Operating System :: MacOS", - "Operating System :: Microsoft :: Windows", - "Operating System :: Unix", - "Programming Language :: Python", - "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.8", - "Programming Language :: Python :: 3.9", - "Programming Language :: Python :: 3.10", - "Programming Language :: Python :: 3.11", - "Topic :: Scientific/Engineering", - "Topic :: Scientific/Engineering :: GIS", - "Topic :: Scientific/Engineering :: Image Processing", - ], -) diff --git a/coregistration/README.md b/coregistration/README.md deleted file mode 100644 index 94fdede8..00000000 --- a/coregistration/README.md +++ /dev/null @@ -1,5 +0,0 @@ -# eolearn.coregistration subpackage - -The deprecated way to install `eolearn.coregistration`. See [migration guide](https://github.com/sentinel-hub/eo-learn/issues/733) on how to correctly install the `eo-learn` package. - -Installs requirements and a dummy package that is detected by `eo-learn` but otherwise does not change anything. diff --git a/coregistration/deprecated_eolearn_coregistration/__init__.py b/coregistration/deprecated_eolearn_coregistration/__init__.py deleted file mode 100644 index 5b601886..00000000 --- a/coregistration/deprecated_eolearn_coregistration/__init__.py +++ /dev/null @@ -1 +0,0 @@ -__version__ = "1.5.0" diff --git a/coregistration/requirements.txt b/coregistration/requirements.txt deleted file mode 100644 index 56205006..00000000 --- a/coregistration/requirements.txt +++ /dev/null @@ -1 +0,0 @@ -eo-learn diff --git a/coregistration/setup.py b/coregistration/setup.py deleted file mode 100644 index e09b78e5..00000000 --- a/coregistration/setup.py +++ /dev/null @@ -1,68 +0,0 @@ -from __future__ import annotations - -import os - -from setuptools import find_packages, setup - - -def get_long_description(): - this_directory = os.path.abspath(os.path.dirname(__file__)) - - with open(os.path.join(this_directory, "README.md"), encoding="utf-8") as f: - return f.read() - - -def parse_requirements(file): - with open(os.path.join(os.path.dirname(__file__), file)) as requirements_file: - return sorted({line.partition("#")[0].strip() for line in requirements_file} - set("")) - - -def get_version(): - path = os.path.join(os.path.dirname(__file__), "deprecated_eolearn_coregistration", "__init__.py") - with open(path) as version_file: - for line in version_file: - if line.find("__version__") >= 0: - version = line.split("=")[1].strip() - version = version.strip('"').strip("'") - return version - - -setup( - name="eo-learn-coregistration", - python_requires=">=3.8", - version=get_version(), - description="A collection of image co-registration EOTasks", - long_description=get_long_description(), - long_description_content_type="text/markdown", - url="https://github.com/sentinel-hub/eo-learn", - project_urls={ - "Documentation": "https://eo-learn.readthedocs.io", - "Source Code": "https://github.com/sentinel-hub/eo-learn", - "Bug Tracker": "https://github.com/sentinel-hub/eo-learn/issues", - "Forum": "https://forum.sentinel-hub.com", - }, - author="Sinergise EO research team", - author_email="eoresearch@sinergise.com", - license="MIT", - packages=find_packages(), - install_requires=parse_requirements("requirements.txt"), - classifiers=[ - "Development Status :: 5 - Production/Stable", - "Intended Audience :: Developers", - "Intended Audience :: Education", - "Intended Audience :: Science/Research", - "License :: OSI Approved :: MIT License", - "Operating System :: MacOS", - "Operating System :: Microsoft :: Windows", - "Operating System :: Unix", - "Programming Language :: Python", - "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.8", - "Programming Language :: Python :: 3.9", - "Programming Language :: Python :: 3.10", - "Programming Language :: Python :: 3.11", - "Topic :: Scientific/Engineering", - "Topic :: Scientific/Engineering :: GIS", - "Topic :: Scientific/Engineering :: Image Processing", - ], -) diff --git a/features/README.md b/features/README.md deleted file mode 100644 index 15664d2c..00000000 --- a/features/README.md +++ /dev/null @@ -1,5 +0,0 @@ -# eolearn.features subpackage - -The deprecated way to install `eolearn.features`. See [migration guide](https://github.com/sentinel-hub/eo-learn/issues/733) on how to correctly install the `eo-learn` package. - -Installs requirements and a dummy package that is detected by `eo-learn` but otherwise does not change anything. diff --git a/features/deprecated_eolearn_features/__init__.py b/features/deprecated_eolearn_features/__init__.py deleted file mode 100644 index 5b601886..00000000 --- a/features/deprecated_eolearn_features/__init__.py +++ /dev/null @@ -1 +0,0 @@ -__version__ = "1.5.0" diff --git a/features/requirements.txt b/features/requirements.txt deleted file mode 100644 index 56205006..00000000 --- a/features/requirements.txt +++ /dev/null @@ -1 +0,0 @@ -eo-learn diff --git a/features/setup.py b/features/setup.py deleted file mode 100644 index d1e869c8..00000000 --- a/features/setup.py +++ /dev/null @@ -1,67 +0,0 @@ -from __future__ import annotations - -import os - -from setuptools import find_packages, setup - - -def get_long_description(): - this_directory = os.path.abspath(os.path.dirname(__file__)) - - with open(os.path.join(this_directory, "README.md"), encoding="utf-8") as f: - return f.read() - - -def parse_requirements(file): - with open(os.path.join(os.path.dirname(__file__), file)) as requirements_file: - return sorted({line.partition("#")[0].strip() for line in requirements_file} - set("")) - - -def get_version(): - path = os.path.join(os.path.dirname(__file__), "deprecated_eolearn_features", "__init__.py") - with open(path) as version_file: - for line in version_file: - if line.find("__version__") >= 0: - version = line.split("=")[1].strip() - version = version.strip('"').strip("'") - return version - - -setup( - name="eo-learn-features", - python_requires=">=3.8", - version=get_version(), - description="A collection of feature manipulation EOTasks and utilities", - long_description=get_long_description(), - long_description_content_type="text/markdown", - url="https://github.com/sentinel-hub/eo-learn", - project_urls={ - "Documentation": "https://eo-learn.readthedocs.io", - "Source Code": "https://github.com/sentinel-hub/eo-learn", - "Bug Tracker": "https://github.com/sentinel-hub/eo-learn/issues", - "Forum": "https://forum.sentinel-hub.com", - }, - author="Sinergise EO research team", - author_email="eoresearch@sinergise.com", - license="MIT", - packages=find_packages(), - install_requires=parse_requirements("requirements.txt"), - classifiers=[ - "Development Status :: 5 - Production/Stable", - "Intended Audience :: Developers", - "Intended Audience :: Education", - "Intended Audience :: Science/Research", - "License :: OSI Approved :: MIT License", - "Operating System :: MacOS", - "Operating System :: Microsoft :: Windows", - "Operating System :: Unix", - "Programming Language :: Python", - "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.8", - "Programming Language :: Python :: 3.9", - "Programming Language :: Python :: 3.10", - "Topic :: Scientific/Engineering", - "Topic :: Scientific/Engineering :: GIS", - "Topic :: Scientific/Engineering :: Image Processing", - ], -) diff --git a/geometry/README.md b/geometry/README.md deleted file mode 100644 index 7dbf06e4..00000000 --- a/geometry/README.md +++ /dev/null @@ -1,5 +0,0 @@ -# eolearn.geometry subpackage - -The deprecated way to install `eolearn.geometry`. See [migration guide](https://github.com/sentinel-hub/eo-learn/issues/733) on how to correctly install the `eo-learn` package. - -Installs requirements and a dummy package that is detected by `eo-learn` but otherwise does not change anything. diff --git a/geometry/deprecated_eolearn_geometry/__init__.py b/geometry/deprecated_eolearn_geometry/__init__.py deleted file mode 100644 index 5b601886..00000000 --- a/geometry/deprecated_eolearn_geometry/__init__.py +++ /dev/null @@ -1 +0,0 @@ -__version__ = "1.5.0" diff --git a/geometry/requirements.txt b/geometry/requirements.txt deleted file mode 100644 index 56205006..00000000 --- a/geometry/requirements.txt +++ /dev/null @@ -1 +0,0 @@ -eo-learn diff --git a/geometry/setup.py b/geometry/setup.py deleted file mode 100644 index 5a4ead37..00000000 --- a/geometry/setup.py +++ /dev/null @@ -1,68 +0,0 @@ -from __future__ import annotations - -import os - -from setuptools import find_packages, setup - - -def get_long_description(): - this_directory = os.path.abspath(os.path.dirname(__file__)) - - with open(os.path.join(this_directory, "README.md"), encoding="utf-8") as f: - return f.read() - - -def parse_requirements(file): - with open(os.path.join(os.path.dirname(__file__), file)) as requirements_file: - return sorted({line.partition("#")[0].strip() for line in requirements_file} - set("")) - - -def get_version(): - path = os.path.join(os.path.dirname(__file__), "deprecated_eolearn_geometry", "__init__.py") - with open(path) as version_file: - for line in version_file: - if line.find("__version__") >= 0: - version = line.split("=")[1].strip() - version = version.strip('"').strip("'") - return version - - -setup( - name="eo-learn-geometry", - python_requires=">=3.8", - version=get_version(), - description="A collection of geometry EOTasks and utilities", - long_description=get_long_description(), - long_description_content_type="text/markdown", - url="https://github.com/sentinel-hub/eo-learn", - project_urls={ - "Documentation": "https://eo-learn.readthedocs.io", - "Source Code": "https://github.com/sentinel-hub/eo-learn", - "Bug Tracker": "https://github.com/sentinel-hub/eo-learn/issues", - "Forum": "https://forum.sentinel-hub.com", - }, - author="Sinergise EO research team", - author_email="eoresearch@sinergise.com", - license="MIT", - packages=find_packages(), - install_requires=parse_requirements("requirements.txt"), - classifiers=[ - "Development Status :: 5 - Production/Stable", - "Intended Audience :: Developers", - "Intended Audience :: Education", - "Intended Audience :: Science/Research", - "License :: OSI Approved :: MIT License", - "Operating System :: MacOS", - "Operating System :: Microsoft :: Windows", - "Operating System :: Unix", - "Programming Language :: Python", - "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.8", - "Programming Language :: Python :: 3.9", - "Programming Language :: Python :: 3.10", - "Programming Language :: Python :: 3.11", - "Topic :: Scientific/Engineering", - "Topic :: Scientific/Engineering :: GIS", - "Topic :: Scientific/Engineering :: Image Processing", - ], -) diff --git a/io/README.md b/io/README.md deleted file mode 100644 index c989e1bb..00000000 --- a/io/README.md +++ /dev/null @@ -1,5 +0,0 @@ -# eolearn.io subpackage - -The deprecated way to install `eolearn.io`. See [migration guide](https://github.com/sentinel-hub/eo-learn/issues/733) on how to correctly install the `eo-learn` package. - -Installs requirements and a dummy package that is detected by `eo-learn` but otherwise does not change anything. diff --git a/io/deprecated_eolearn_io/__init__.py b/io/deprecated_eolearn_io/__init__.py deleted file mode 100644 index 5b601886..00000000 --- a/io/deprecated_eolearn_io/__init__.py +++ /dev/null @@ -1 +0,0 @@ -__version__ = "1.5.0" diff --git a/io/requirements-geodb.txt b/io/requirements-geodb.txt deleted file mode 100644 index 3776404a..00000000 --- a/io/requirements-geodb.txt +++ /dev/null @@ -1,2 +0,0 @@ -python-dotenv -xcube-geodb @ git+git://github.com/dcs4cop/xcube-geodb.git diff --git a/io/requirements-meteoblue.txt b/io/requirements-meteoblue.txt deleted file mode 100644 index 9db97748..00000000 --- a/io/requirements-meteoblue.txt +++ /dev/null @@ -1 +0,0 @@ -meteoblue_dataset_sdk>=1,<2 diff --git a/io/requirements.txt b/io/requirements.txt deleted file mode 100644 index 56205006..00000000 --- a/io/requirements.txt +++ /dev/null @@ -1 +0,0 @@ -eo-learn diff --git a/io/setup.py b/io/setup.py deleted file mode 100644 index 6bdea282..00000000 --- a/io/setup.py +++ /dev/null @@ -1,69 +0,0 @@ -from __future__ import annotations - -import os - -from setuptools import find_packages, setup - - -def get_long_description(): - this_directory = os.path.abspath(os.path.dirname(__file__)) - - with open(os.path.join(this_directory, "README.md"), encoding="utf-8") as f: - return f.read() - - -def parse_requirements(file): - with open(os.path.join(os.path.dirname(__file__), file)) as requirements_file: - return sorted({line.partition("#")[0].strip() for line in requirements_file} - set("")) - - -def get_version(): - path = os.path.join(os.path.dirname(__file__), "deprecated_eolearn_io", "__init__.py") - with open(path) as version_file: - for line in version_file: - if line.find("__version__") >= 0: - version = line.split("=")[1].strip() - version = version.strip('"').strip("'") - return version - - -setup( - name="eo-learn-io", - python_requires=">=3.8", - version=get_version(), - description="A collection of input/output EOTasks and utilities", - long_description=get_long_description(), - long_description_content_type="text/markdown", - url="https://github.com/sentinel-hub/eo-learn", - project_urls={ - "Documentation": "https://eo-learn.readthedocs.io", - "Source Code": "https://github.com/sentinel-hub/eo-learn", - "Bug Tracker": "https://github.com/sentinel-hub/eo-learn/issues", - "Forum": "https://forum.sentinel-hub.com", - }, - author="Sinergise EO research team", - author_email="eoresearch@sinergise.com", - license="MIT", - packages=find_packages(), - install_requires=parse_requirements("requirements.txt"), - extras_require={"METEOBLUE": parse_requirements("requirements-meteoblue.txt")}, - classifiers=[ - "Development Status :: 5 - Production/Stable", - "Intended Audience :: Developers", - "Intended Audience :: Education", - "Intended Audience :: Science/Research", - "License :: OSI Approved :: MIT License", - "Operating System :: MacOS", - "Operating System :: Microsoft :: Windows", - "Operating System :: Unix", - "Programming Language :: Python", - "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.8", - "Programming Language :: Python :: 3.9", - "Programming Language :: Python :: 3.10", - "Programming Language :: Python :: 3.11", - "Topic :: Scientific/Engineering", - "Topic :: Scientific/Engineering :: GIS", - "Topic :: Scientific/Engineering :: Image Processing", - ], -) diff --git a/mask/README.md b/mask/README.md deleted file mode 100644 index bcb6f7ff..00000000 --- a/mask/README.md +++ /dev/null @@ -1,5 +0,0 @@ -# eolearn.mask subpackage - -The deprecated way to install `eolearn.mask`. See [migration guide](https://github.com/sentinel-hub/eo-learn/issues/733) on how to correctly install the `eo-learn` package. - -Installs requirements and a dummy package that is detected by `eo-learn` but otherwise does not change anything. diff --git a/mask/deprecated_eolearn_mask/__init__.py b/mask/deprecated_eolearn_mask/__init__.py deleted file mode 100644 index 5b601886..00000000 --- a/mask/deprecated_eolearn_mask/__init__.py +++ /dev/null @@ -1 +0,0 @@ -__version__ = "1.5.0" diff --git a/mask/requirements.txt b/mask/requirements.txt deleted file mode 100644 index 56205006..00000000 --- a/mask/requirements.txt +++ /dev/null @@ -1 +0,0 @@ -eo-learn diff --git a/mask/setup.py b/mask/setup.py deleted file mode 100644 index 8d7e1ce6..00000000 --- a/mask/setup.py +++ /dev/null @@ -1,68 +0,0 @@ -from __future__ import annotations - -import os - -from setuptools import find_packages, setup - - -def get_long_description(): - this_directory = os.path.abspath(os.path.dirname(__file__)) - - with open(os.path.join(this_directory, "README.md"), encoding="utf-8") as f: - return f.read() - - -def parse_requirements(file): - with open(os.path.join(os.path.dirname(__file__), file)) as requirements_file: - return sorted({line.partition("#")[0].strip() for line in requirements_file} - set("")) - - -def get_version(): - path = os.path.join(os.path.dirname(__file__), "deprecated_eolearn_mask", "__init__.py") - with open(path) as version_file: - for line in version_file: - if line.find("__version__") >= 0: - version = line.split("=")[1].strip() - version = version.strip('"').strip("'") - return version - - -setup( - name="eo-learn-mask", - python_requires=">=3.8", - version=get_version(), - description="A collection of masking EOTasks and utilities", - long_description=get_long_description(), - long_description_content_type="text/markdown", - url="https://github.com/sentinel-hub/eo-learn", - project_urls={ - "Documentation": "https://eo-learn.readthedocs.io", - "Source Code": "https://github.com/sentinel-hub/eo-learn", - "Bug Tracker": "https://github.com/sentinel-hub/eo-learn/issues", - "Forum": "https://forum.sentinel-hub.com", - }, - author="Sinergise EO research team", - author_email="eoresearch@sinergise.com", - license="MIT", - packages=find_packages(), - install_requires=parse_requirements("requirements.txt"), - classifiers=[ - "Development Status :: 5 - Production/Stable", - "Intended Audience :: Developers", - "Intended Audience :: Education", - "Intended Audience :: Science/Research", - "License :: OSI Approved :: MIT License", - "Operating System :: MacOS", - "Operating System :: Microsoft :: Windows", - "Operating System :: Unix", - "Programming Language :: Python", - "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.8", - "Programming Language :: Python :: 3.9", - "Programming Language :: Python :: 3.10", - "Programming Language :: Python :: 3.11", - "Topic :: Scientific/Engineering", - "Topic :: Scientific/Engineering :: GIS", - "Topic :: Scientific/Engineering :: Image Processing", - ], -) diff --git a/ml_tools/README.md b/ml_tools/README.md deleted file mode 100644 index 148a28ee..00000000 --- a/ml_tools/README.md +++ /dev/null @@ -1,5 +0,0 @@ -# eolearn.ml_tools subpackage - -The deprecated way to install `eolearn.ml_tools`. See [migration guide](https://github.com/sentinel-hub/eo-learn/issues/733) on how to correctly install the `eo-learn` package. - -Installs requirements and a dummy package that is detected by `eo-learn` but otherwise does not change anything. diff --git a/ml_tools/deprecated_eolearn_ml_tools/__init__.py b/ml_tools/deprecated_eolearn_ml_tools/__init__.py deleted file mode 100644 index 5b601886..00000000 --- a/ml_tools/deprecated_eolearn_ml_tools/__init__.py +++ /dev/null @@ -1 +0,0 @@ -__version__ = "1.5.0" diff --git a/ml_tools/requirements-plotting.txt b/ml_tools/requirements-plotting.txt deleted file mode 100644 index 6ccafc3f..00000000 --- a/ml_tools/requirements-plotting.txt +++ /dev/null @@ -1 +0,0 @@ -matplotlib diff --git a/ml_tools/requirements-tdigest.txt b/ml_tools/requirements-tdigest.txt deleted file mode 100644 index 3dd522fd..00000000 --- a/ml_tools/requirements-tdigest.txt +++ /dev/null @@ -1 +0,0 @@ -tdigest==0.5.2.2 diff --git a/ml_tools/requirements.txt b/ml_tools/requirements.txt deleted file mode 100644 index 56205006..00000000 --- a/ml_tools/requirements.txt +++ /dev/null @@ -1 +0,0 @@ -eo-learn diff --git a/ml_tools/setup.py b/ml_tools/setup.py deleted file mode 100644 index 26a21315..00000000 --- a/ml_tools/setup.py +++ /dev/null @@ -1,72 +0,0 @@ -from __future__ import annotations - -import os - -from setuptools import find_packages, setup - - -def get_long_description(): - this_directory = os.path.abspath(os.path.dirname(__file__)) - - with open(os.path.join(this_directory, "README.md"), encoding="utf-8") as f: - return f.read() - - -def parse_requirements(file): - with open(os.path.join(os.path.dirname(__file__), file)) as requirements_file: - return sorted({line.partition("#")[0].strip() for line in requirements_file} - set("")) - - -def get_version(): - path = os.path.join(os.path.dirname(__file__), "deprecated_eolearn_ml_tools", "__init__.py") - with open(path) as version_file: - for line in version_file: - if line.find("__version__") >= 0: - version = line.split("=")[1].strip() - version = version.strip('"').strip("'") - return version - - -setup( - name="eo-learn-ml-tools", - python_requires=">=3.8", - version=get_version(), - description="A collection of machine learning EOTasks and utilities", - long_description=get_long_description(), - long_description_content_type="text/markdown", - url="https://github.com/sentinel-hub/eo-learn", - project_urls={ - "Documentation": "https://eo-learn.readthedocs.io", - "Source Code": "https://github.com/sentinel-hub/eo-learn", - "Bug Tracker": "https://github.com/sentinel-hub/eo-learn/issues", - "Forum": "https://forum.sentinel-hub.com", - }, - author="Sinergise EO research team", - author_email="eoresearch@sinergise.com", - license="MIT", - packages=find_packages(), - install_requires=parse_requirements("requirements.txt"), - extras_require={ - "PLOTTING": parse_requirements("requirements-plotting.txt"), - "TDIGEST": parse_requirements("requirements-tdigest.txt"), - }, - classifiers=[ - "Development Status :: 5 - Production/Stable", - "Intended Audience :: Developers", - "Intended Audience :: Education", - "Intended Audience :: Science/Research", - "License :: OSI Approved :: MIT License", - "Operating System :: MacOS", - "Operating System :: Microsoft :: Windows", - "Operating System :: Unix", - "Programming Language :: Python", - "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.8", - "Programming Language :: Python :: 3.9", - "Programming Language :: Python :: 3.10", - "Programming Language :: Python :: 3.11", - "Topic :: Scientific/Engineering", - "Topic :: Scientific/Engineering :: GIS", - "Topic :: Scientific/Engineering :: Image Processing", - ], -) diff --git a/visualization/README.md b/visualization/README.md deleted file mode 100644 index 3f562974..00000000 --- a/visualization/README.md +++ /dev/null @@ -1,5 +0,0 @@ -# eolearn.visualization subpackage - -The deprecated way to install `eolearn.visualization`. See [migration guide](https://github.com/sentinel-hub/eo-learn/issues/733) on how to correctly install the `eo-learn` package. - -Installs requirements and a dummy package that is detected by `eo-learn` but otherwise does not change anything. diff --git a/visualization/deprecated_eolearn_visualization/__init__.py b/visualization/deprecated_eolearn_visualization/__init__.py deleted file mode 100644 index 5b601886..00000000 --- a/visualization/deprecated_eolearn_visualization/__init__.py +++ /dev/null @@ -1 +0,0 @@ -__version__ = "1.5.0" diff --git a/visualization/requirements.txt b/visualization/requirements.txt deleted file mode 100644 index 56205006..00000000 --- a/visualization/requirements.txt +++ /dev/null @@ -1 +0,0 @@ -eo-learn diff --git a/visualization/setup.py b/visualization/setup.py deleted file mode 100644 index 8201d00a..00000000 --- a/visualization/setup.py +++ /dev/null @@ -1,70 +0,0 @@ -from __future__ import annotations - -import os - -from setuptools import find_packages, setup - - -def get_long_description(): - this_directory = os.path.abspath(os.path.dirname(__file__)) - - with open(os.path.join(this_directory, "README.md"), encoding="utf-8") as f: - return f.read() - - -def parse_requirements(file): - with open(os.path.join(os.path.dirname(__file__), file)) as requirements_file: - return sorted({line.partition("#")[0].strip() for line in requirements_file} - set("")) - - -def get_version(): - path = os.path.join(os.path.dirname(__file__), "deprecated_eolearn_visualization", "__init__.py") - with open(path) as version_file: - for line in version_file: - if line.find("__version__") >= 0: - version = line.split("=")[1].strip() - version = version.strip('"').strip("'") - return version - - -setup( - name="eo-learn-visualization", - python_requires=">=3.8", - version=get_version(), - description="A collection of visualization utilities", - long_description=get_long_description(), - long_description_content_type="text/markdown", - url="https://github.com/sentinel-hub/eo-learn", - project_urls={ - "Documentation": "https://eo-learn.readthedocs.io", - "Source Code": "https://github.com/sentinel-hub/eo-learn", - "Bug Tracker": "https://github.com/sentinel-hub/eo-learn/issues", - "Forum": "https://forum.sentinel-hub.com", - }, - author="Sinergise EO research team", - author_email="eoresearch@sinergise.com", - license="MIT", - packages=find_packages(), - package_data={"eolearn": ["visualization/report_templates/report.html"]}, - install_requires=parse_requirements("requirements.txt"), - classifiers=[ - "Development Status :: 5 - Production/Stable", - "Intended Audience :: Developers", - "Intended Audience :: Education", - "Intended Audience :: Science/Research", - "License :: OSI Approved :: MIT License", - "Operating System :: MacOS", - "Operating System :: Microsoft :: Windows", - "Operating System :: Unix", - "Programming Language :: Python", - "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.8", - "Programming Language :: Python :: 3.9", - "Programming Language :: Python :: 3.10", - "Programming Language :: Python :: 3.11", - "Topic :: Scientific/Engineering", - "Topic :: Scientific/Engineering :: GIS", - "Topic :: Scientific/Engineering :: Image Processing", - "Topic :: Scientific/Engineering :: Visualization", - ], -)