hopeit.dataframes 0.28.1__tar.gz → 0.29.0__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.
- {hopeit_dataframes-0.28.1 → hopeit_dataframes-0.29.0}/PKG-INFO +4 -4
- {hopeit_dataframes-0.28.1 → hopeit_dataframes-0.29.0}/pyproject.toml +4 -4
- {hopeit_dataframes-0.28.1 → hopeit_dataframes-0.29.0}/src/hopeit.dataframes.egg-info/PKG-INFO +4 -4
- hopeit_dataframes-0.29.0/src/hopeit.dataframes.egg-info/requires.txt +5 -0
- hopeit_dataframes-0.28.1/src/hopeit.dataframes.egg-info/requires.txt +0 -5
- {hopeit_dataframes-0.28.1 → hopeit_dataframes-0.29.0}/README.md +0 -0
- {hopeit_dataframes-0.28.1 → hopeit_dataframes-0.29.0}/setup.cfg +0 -0
- {hopeit_dataframes-0.28.1 → hopeit_dataframes-0.29.0}/src/hopeit/dataframes/__init__.py +0 -0
- {hopeit_dataframes-0.28.1 → hopeit_dataframes-0.29.0}/src/hopeit/dataframes/datablocks.py +0 -0
- {hopeit_dataframes-0.28.1 → hopeit_dataframes-0.29.0}/src/hopeit/dataframes/dataframe.py +0 -0
- {hopeit_dataframes-0.28.1 → hopeit_dataframes-0.29.0}/src/hopeit/dataframes/polars/__init__.py +0 -0
- {hopeit_dataframes-0.28.1 → hopeit_dataframes-0.29.0}/src/hopeit/dataframes/polars/py.typed +0 -0
- {hopeit_dataframes-0.28.1 → hopeit_dataframes-0.29.0}/src/hopeit/dataframes/py.typed +0 -0
- {hopeit_dataframes-0.28.1 → hopeit_dataframes-0.29.0}/src/hopeit/dataframes/serialization/__init__.py +0 -0
- {hopeit_dataframes-0.28.1 → hopeit_dataframes-0.29.0}/src/hopeit/dataframes/serialization/dataset.py +0 -0
- {hopeit_dataframes-0.28.1 → hopeit_dataframes-0.29.0}/src/hopeit/dataframes/serialization/files.py +0 -0
- {hopeit_dataframes-0.28.1 → hopeit_dataframes-0.29.0}/src/hopeit/dataframes/serialization/protocol.py +0 -0
- {hopeit_dataframes-0.28.1 → hopeit_dataframes-0.29.0}/src/hopeit/dataframes/serialization/py.typed +0 -0
- {hopeit_dataframes-0.28.1 → hopeit_dataframes-0.29.0}/src/hopeit/dataframes/serialization/settings.py +0 -0
- {hopeit_dataframes-0.28.1 → hopeit_dataframes-0.29.0}/src/hopeit/dataframes/setup/__init__.py +0 -0
- {hopeit_dataframes-0.28.1 → hopeit_dataframes-0.29.0}/src/hopeit/dataframes/setup/dataframes.py +0 -0
- {hopeit_dataframes-0.28.1 → hopeit_dataframes-0.29.0}/src/hopeit/dataframes/setup/py.typed +0 -0
- {hopeit_dataframes-0.28.1 → hopeit_dataframes-0.29.0}/src/hopeit/dataframes/setup/register_database.py +0 -0
- {hopeit_dataframes-0.28.1 → hopeit_dataframes-0.29.0}/src/hopeit/dataframes/setup/registry.py +0 -0
- {hopeit_dataframes-0.28.1 → hopeit_dataframes-0.29.0}/src/hopeit.dataframes.egg-info/SOURCES.txt +0 -0
- {hopeit_dataframes-0.28.1 → hopeit_dataframes-0.29.0}/src/hopeit.dataframes.egg-info/dependency_links.txt +0 -0
- {hopeit_dataframes-0.28.1 → hopeit_dataframes-0.29.0}/src/hopeit.dataframes.egg-info/top_level.txt +0 -0
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: hopeit.dataframes
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.29.0
|
|
4
4
|
Summary: Hopeit Engine Dataframes for Polars
|
|
5
5
|
Author-email: Leo Smerling & Pablo Canto <contact@hopeit.com.ar>, Leo Smerling <contact@hopeit.com.ar>, Pablo Canto <contact@hopeit.com.ar>
|
|
6
|
-
License: Apache-2.0
|
|
6
|
+
License-Expression: Apache-2.0
|
|
7
7
|
Project-URL: Homepage, https://github.com/hopeit-git/hopeit.engine
|
|
8
8
|
Project-URL: CI: GitHub Actions, https://github.com/hopeit-git/hopeit.engine/actions?query=workflow
|
|
9
9
|
Project-URL: Docs: RTD, https://hopeitengine.readthedocs.io/en/latest/
|
|
@@ -24,8 +24,8 @@ Classifier: Topic :: Internet :: WWW/HTTP
|
|
|
24
24
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
25
25
|
Classifier: Framework :: AsyncIO
|
|
26
26
|
Description-Content-Type: text/markdown
|
|
27
|
-
Requires-Dist: hopeit.engine>=0.
|
|
28
|
-
Requires-Dist: hopeit.fs-storage>=0.
|
|
27
|
+
Requires-Dist: hopeit.engine>=0.29.0
|
|
28
|
+
Requires-Dist: hopeit.fs-storage>=0.29.0
|
|
29
29
|
Provides-Extra: polars
|
|
30
30
|
Requires-Dist: polars>=1.32.0; extra == "polars"
|
|
31
31
|
|
|
@@ -4,12 +4,12 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "hopeit.dataframes"
|
|
7
|
-
version = "0.
|
|
7
|
+
version = "0.29.0"
|
|
8
8
|
|
|
9
9
|
description = "Hopeit Engine Dataframes for Polars"
|
|
10
10
|
dynamic = ["readme"]
|
|
11
11
|
|
|
12
|
-
license =
|
|
12
|
+
license = "Apache-2.0"
|
|
13
13
|
authors = [
|
|
14
14
|
{ name = "Leo Smerling & Pablo Canto", email = "contact@hopeit.com.ar" },
|
|
15
15
|
{ name = "Leo Smerling", email = "contact@hopeit.com.ar" },
|
|
@@ -33,8 +33,8 @@ classifiers = [
|
|
|
33
33
|
]
|
|
34
34
|
|
|
35
35
|
dependencies = [
|
|
36
|
-
"hopeit.engine>=0.
|
|
37
|
-
"hopeit.fs-storage>=0.
|
|
36
|
+
"hopeit.engine>=0.29.0",
|
|
37
|
+
"hopeit.fs-storage>=0.29.0",
|
|
38
38
|
]
|
|
39
39
|
|
|
40
40
|
[project.optional-dependencies]
|
{hopeit_dataframes-0.28.1 → hopeit_dataframes-0.29.0}/src/hopeit.dataframes.egg-info/PKG-INFO
RENAMED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: hopeit.dataframes
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.29.0
|
|
4
4
|
Summary: Hopeit Engine Dataframes for Polars
|
|
5
5
|
Author-email: Leo Smerling & Pablo Canto <contact@hopeit.com.ar>, Leo Smerling <contact@hopeit.com.ar>, Pablo Canto <contact@hopeit.com.ar>
|
|
6
|
-
License: Apache-2.0
|
|
6
|
+
License-Expression: Apache-2.0
|
|
7
7
|
Project-URL: Homepage, https://github.com/hopeit-git/hopeit.engine
|
|
8
8
|
Project-URL: CI: GitHub Actions, https://github.com/hopeit-git/hopeit.engine/actions?query=workflow
|
|
9
9
|
Project-URL: Docs: RTD, https://hopeitengine.readthedocs.io/en/latest/
|
|
@@ -24,8 +24,8 @@ Classifier: Topic :: Internet :: WWW/HTTP
|
|
|
24
24
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
25
25
|
Classifier: Framework :: AsyncIO
|
|
26
26
|
Description-Content-Type: text/markdown
|
|
27
|
-
Requires-Dist: hopeit.engine>=0.
|
|
28
|
-
Requires-Dist: hopeit.fs-storage>=0.
|
|
27
|
+
Requires-Dist: hopeit.engine>=0.29.0
|
|
28
|
+
Requires-Dist: hopeit.fs-storage>=0.29.0
|
|
29
29
|
Provides-Extra: polars
|
|
30
30
|
Requires-Dist: polars>=1.32.0; extra == "polars"
|
|
31
31
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{hopeit_dataframes-0.28.1 → hopeit_dataframes-0.29.0}/src/hopeit/dataframes/polars/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{hopeit_dataframes-0.28.1 → hopeit_dataframes-0.29.0}/src/hopeit/dataframes/serialization/dataset.py
RENAMED
|
File without changes
|
{hopeit_dataframes-0.28.1 → hopeit_dataframes-0.29.0}/src/hopeit/dataframes/serialization/files.py
RENAMED
|
File without changes
|
|
File without changes
|
{hopeit_dataframes-0.28.1 → hopeit_dataframes-0.29.0}/src/hopeit/dataframes/serialization/py.typed
RENAMED
|
File without changes
|
|
File without changes
|
{hopeit_dataframes-0.28.1 → hopeit_dataframes-0.29.0}/src/hopeit/dataframes/setup/__init__.py
RENAMED
|
File without changes
|
{hopeit_dataframes-0.28.1 → hopeit_dataframes-0.29.0}/src/hopeit/dataframes/setup/dataframes.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{hopeit_dataframes-0.28.1 → hopeit_dataframes-0.29.0}/src/hopeit/dataframes/setup/registry.py
RENAMED
|
File without changes
|
{hopeit_dataframes-0.28.1 → hopeit_dataframes-0.29.0}/src/hopeit.dataframes.egg-info/SOURCES.txt
RENAMED
|
File without changes
|
|
File without changes
|
{hopeit_dataframes-0.28.1 → hopeit_dataframes-0.29.0}/src/hopeit.dataframes.egg-info/top_level.txt
RENAMED
|
File without changes
|