polytope-python 1.0.1__tar.gz → 1.0.2__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (31) hide show
  1. polytope-python-1.0.2/PKG-INFO +13 -0
  2. polytope-python-1.0.2/polytope/version.py +1 -0
  3. polytope-python-1.0.2/polytope_python.egg-info/PKG-INFO +13 -0
  4. {polytope-python-1.0.1 → polytope-python-1.0.2}/setup.py +4 -0
  5. polytope-python-1.0.1/PKG-INFO +0 -10
  6. polytope-python-1.0.1/polytope/version.py +0 -1
  7. polytope-python-1.0.1/polytope_python.egg-info/PKG-INFO +0 -10
  8. {polytope-python-1.0.1 → polytope-python-1.0.2}/LICENSE +0 -0
  9. {polytope-python-1.0.1 → polytope-python-1.0.2}/polytope/__init__.py +0 -0
  10. {polytope-python-1.0.1 → polytope-python-1.0.2}/polytope/datacube/__init__.py +0 -0
  11. {polytope-python-1.0.1 → polytope-python-1.0.2}/polytope/datacube/datacube.py +0 -0
  12. {polytope-python-1.0.1 → polytope-python-1.0.2}/polytope/datacube/datacube_axis.py +0 -0
  13. {polytope-python-1.0.1 → polytope-python-1.0.2}/polytope/datacube/datacube_request_tree.py +0 -0
  14. {polytope-python-1.0.1 → polytope-python-1.0.2}/polytope/datacube/mock.py +0 -0
  15. {polytope-python-1.0.1 → polytope-python-1.0.2}/polytope/datacube/xarray.py +0 -0
  16. {polytope-python-1.0.1 → polytope-python-1.0.2}/polytope/engine/__init__.py +0 -0
  17. {polytope-python-1.0.1 → polytope-python-1.0.2}/polytope/engine/engine.py +0 -0
  18. {polytope-python-1.0.1 → polytope-python-1.0.2}/polytope/engine/hullslicer.py +0 -0
  19. {polytope-python-1.0.1 → polytope-python-1.0.2}/polytope/polytope.py +0 -0
  20. {polytope-python-1.0.1 → polytope-python-1.0.2}/polytope/shapes.py +0 -0
  21. {polytope-python-1.0.1 → polytope-python-1.0.2}/polytope/utility/__init__.py +0 -0
  22. {polytope-python-1.0.1 → polytope-python-1.0.2}/polytope/utility/combinatorics.py +0 -0
  23. {polytope-python-1.0.1 → polytope-python-1.0.2}/polytope/utility/exceptions.py +0 -0
  24. {polytope-python-1.0.1 → polytope-python-1.0.2}/polytope/utility/geometry.py +0 -0
  25. {polytope-python-1.0.1 → polytope-python-1.0.2}/polytope/utility/profiling.py +0 -0
  26. {polytope-python-1.0.1 → polytope-python-1.0.2}/polytope_python.egg-info/SOURCES.txt +0 -0
  27. {polytope-python-1.0.1 → polytope-python-1.0.2}/polytope_python.egg-info/dependency_links.txt +0 -0
  28. {polytope-python-1.0.1 → polytope-python-1.0.2}/polytope_python.egg-info/not-zip-safe +0 -0
  29. {polytope-python-1.0.1 → polytope-python-1.0.2}/polytope_python.egg-info/top_level.txt +0 -0
  30. {polytope-python-1.0.1 → polytope-python-1.0.2}/pyproject.toml +0 -0
  31. {polytope-python-1.0.1 → polytope-python-1.0.2}/setup.cfg +0 -0
@@ -0,0 +1,13 @@
1
+ Metadata-Version: 1.0
2
+ Name: polytope-python
3
+ Version: 1.0.2
4
+ Summary: Polytope datacube feature extraction library
5
+ Home-page: https://github.com/ecmwf/polytope
6
+ Author: ECMWF
7
+ Author-email: James.Hawkes@ecmwf.int, Mathilde.Leuridan@ecmwf.int
8
+ License: UNKNOWN
9
+ Description: Polytope is a library for extracting complex data from datacubes. It provides an API for
10
+ non-orthogonal access to data, where the stencil used to extract data from the datacube can be
11
+ any arbitrary n-dimensional polygon (called a polytope). This can be used to efficiently
12
+ extract complex features from a datacube, such as polygon regions or spatio-temporal paths.
13
+ Platform: UNKNOWN
@@ -0,0 +1 @@
1
+ __version__ = "1.0.2"
@@ -0,0 +1,13 @@
1
+ Metadata-Version: 1.0
2
+ Name: polytope-python
3
+ Version: 1.0.2
4
+ Summary: Polytope datacube feature extraction library
5
+ Home-page: https://github.com/ecmwf/polytope
6
+ Author: ECMWF
7
+ Author-email: James.Hawkes@ecmwf.int, Mathilde.Leuridan@ecmwf.int
8
+ License: UNKNOWN
9
+ Description: Polytope is a library for extracting complex data from datacubes. It provides an API for
10
+ non-orthogonal access to data, where the stencil used to extract data from the datacube can be
11
+ any arbitrary n-dimensional polygon (called a polytope). This can be used to efficiently
12
+ extract complex features from a datacube, such as polygon regions or spatio-temporal paths.
13
+ Platform: UNKNOWN
@@ -13,6 +13,10 @@ setup(
13
13
  name="polytope-python",
14
14
  version=__version__,
15
15
  description="Polytope datacube feature extraction library",
16
+ long_description="""Polytope is a library for extracting complex data from datacubes. It provides an API for
17
+ non-orthogonal access to data, where the stencil used to extract data from the datacube can be
18
+ any arbitrary n-dimensional polygon (called a polytope). This can be used to efficiently
19
+ extract complex features from a datacube, such as polygon regions or spatio-temporal paths.""",
16
20
  url="https://github.com/ecmwf/polytope",
17
21
  author="ECMWF",
18
22
  author_email="James.Hawkes@ecmwf.int, Mathilde.Leuridan@ecmwf.int",
@@ -1,10 +0,0 @@
1
- Metadata-Version: 1.0
2
- Name: polytope-python
3
- Version: 1.0.1
4
- Summary: Polytope datacube feature extraction library
5
- Home-page: https://github.com/ecmwf/polytope
6
- Author: ECMWF
7
- Author-email: James.Hawkes@ecmwf.int, Mathilde.Leuridan@ecmwf.int
8
- License: UNKNOWN
9
- Description: UNKNOWN
10
- Platform: UNKNOWN
@@ -1 +0,0 @@
1
- __version__ = "1.0.1"
@@ -1,10 +0,0 @@
1
- Metadata-Version: 1.0
2
- Name: polytope-python
3
- Version: 1.0.1
4
- Summary: Polytope datacube feature extraction library
5
- Home-page: https://github.com/ecmwf/polytope
6
- Author: ECMWF
7
- Author-email: James.Hawkes@ecmwf.int, Mathilde.Leuridan@ecmwf.int
8
- License: UNKNOWN
9
- Description: UNKNOWN
10
- Platform: UNKNOWN
File without changes