batch-analytics 0.1.0__tar.gz → 0.2.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.
- {batch_analytics-0.1.0 → batch_analytics-0.2.0}/PKG-INFO +3 -3
- {batch_analytics-0.1.0 → batch_analytics-0.2.0}/pyproject.toml +3 -3
- {batch_analytics-0.1.0 → batch_analytics-0.2.0}/src/batch_analytics.egg-info/PKG-INFO +3 -3
- {batch_analytics-0.1.0 → batch_analytics-0.2.0}/README.md +0 -0
- {batch_analytics-0.1.0 → batch_analytics-0.2.0}/setup.cfg +0 -0
- {batch_analytics-0.1.0 → batch_analytics-0.2.0}/src/batch_analytics/__init__.py +0 -0
- {batch_analytics-0.1.0 → batch_analytics-0.2.0}/src/batch_analytics/__main__.py +0 -0
- {batch_analytics-0.1.0 → batch_analytics-0.2.0}/src/batch_analytics/analytics/__init__.py +0 -0
- {batch_analytics-0.1.0 → batch_analytics-0.2.0}/src/batch_analytics/analytics/correlation.py +0 -0
- {batch_analytics-0.1.0 → batch_analytics-0.2.0}/src/batch_analytics/analytics/linear_regression.py +0 -0
- {batch_analytics-0.1.0 → batch_analytics-0.2.0}/src/batch_analytics/analytics/pca_clustering.py +0 -0
- {batch_analytics-0.1.0 → batch_analytics-0.2.0}/src/batch_analytics/analytics/t_test.py +0 -0
- {batch_analytics-0.1.0 → batch_analytics-0.2.0}/src/batch_analytics/config.py +0 -0
- {batch_analytics-0.1.0 → batch_analytics-0.2.0}/src/batch_analytics/extract.py +0 -0
- {batch_analytics-0.1.0 → batch_analytics-0.2.0}/src/batch_analytics/job_runner.py +0 -0
- {batch_analytics-0.1.0 → batch_analytics-0.2.0}/src/batch_analytics/log.py +0 -0
- {batch_analytics-0.1.0 → batch_analytics-0.2.0}/src/batch_analytics/modules.py +0 -0
- {batch_analytics-0.1.0 → batch_analytics-0.2.0}/src/batch_analytics/output/__init__.py +0 -0
- {batch_analytics-0.1.0 → batch_analytics-0.2.0}/src/batch_analytics/output/base.py +0 -0
- {batch_analytics-0.1.0 → batch_analytics-0.2.0}/src/batch_analytics/output/clickhouse.py +0 -0
- {batch_analytics-0.1.0 → batch_analytics-0.2.0}/src/batch_analytics/output/local.py +0 -0
- {batch_analytics-0.1.0 → batch_analytics-0.2.0}/src/batch_analytics/output/s3.py +0 -0
- {batch_analytics-0.1.0 → batch_analytics-0.2.0}/src/batch_analytics/transform.py +0 -0
- {batch_analytics-0.1.0 → batch_analytics-0.2.0}/src/batch_analytics.egg-info/SOURCES.txt +0 -0
- {batch_analytics-0.1.0 → batch_analytics-0.2.0}/src/batch_analytics.egg-info/dependency_links.txt +0 -0
- {batch_analytics-0.1.0 → batch_analytics-0.2.0}/src/batch_analytics.egg-info/entry_points.txt +0 -0
- {batch_analytics-0.1.0 → batch_analytics-0.2.0}/src/batch_analytics.egg-info/requires.txt +0 -0
- {batch_analytics-0.1.0 → batch_analytics-0.2.0}/src/batch_analytics.egg-info/top_level.txt +0 -0
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: batch-analytics
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.2.0
|
|
4
4
|
Summary: PySpark batch analytics: Extract, Transform, Stage, and analytical modules (linear regression, correlation, PCA, t-test).
|
|
5
|
-
Author: Analytics Team
|
|
5
|
+
Author: Litewave Analytics Team
|
|
6
6
|
License: MIT
|
|
7
|
-
Requires-Python: >=3.
|
|
7
|
+
Requires-Python: >=3.8
|
|
8
8
|
Description-Content-Type: text/markdown
|
|
9
9
|
Requires-Dist: pyspark<3.6,>=3.4
|
|
10
10
|
Provides-Extra: dev
|
|
@@ -4,14 +4,14 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "batch-analytics"
|
|
7
|
-
version = "0.
|
|
7
|
+
version = "0.2.0"
|
|
8
8
|
description = "PySpark batch analytics: Extract, Transform, Stage, and analytical modules (linear regression, correlation, PCA, t-test)."
|
|
9
9
|
readme = "README.md"
|
|
10
|
-
requires-python = ">=3.
|
|
10
|
+
requires-python = ">=3.8"
|
|
11
11
|
dependencies = [
|
|
12
12
|
"pyspark>=3.4,<3.6",
|
|
13
13
|
]
|
|
14
|
-
authors = [{ name = "Analytics Team" }]
|
|
14
|
+
authors = [{ name = "Litewave Analytics Team" }]
|
|
15
15
|
license = { text = "MIT" }
|
|
16
16
|
|
|
17
17
|
[project.optional-dependencies]
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: batch-analytics
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.2.0
|
|
4
4
|
Summary: PySpark batch analytics: Extract, Transform, Stage, and analytical modules (linear regression, correlation, PCA, t-test).
|
|
5
|
-
Author: Analytics Team
|
|
5
|
+
Author: Litewave Analytics Team
|
|
6
6
|
License: MIT
|
|
7
|
-
Requires-Python: >=3.
|
|
7
|
+
Requires-Python: >=3.8
|
|
8
8
|
Description-Content-Type: text/markdown
|
|
9
9
|
Requires-Dist: pyspark<3.6,>=3.4
|
|
10
10
|
Provides-Extra: dev
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{batch_analytics-0.1.0 → batch_analytics-0.2.0}/src/batch_analytics/analytics/correlation.py
RENAMED
|
File without changes
|
{batch_analytics-0.1.0 → batch_analytics-0.2.0}/src/batch_analytics/analytics/linear_regression.py
RENAMED
|
File without changes
|
{batch_analytics-0.1.0 → batch_analytics-0.2.0}/src/batch_analytics/analytics/pca_clustering.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{batch_analytics-0.1.0 → batch_analytics-0.2.0}/src/batch_analytics.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
{batch_analytics-0.1.0 → batch_analytics-0.2.0}/src/batch_analytics.egg-info/entry_points.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|