batch-analytics 0.3.5__tar.gz → 0.3.6__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 (28) hide show
  1. {batch_analytics-0.3.5 → batch_analytics-0.3.6}/PKG-INFO +3 -2
  2. {batch_analytics-0.3.5 → batch_analytics-0.3.6}/README.md +1 -1
  3. {batch_analytics-0.3.5 → batch_analytics-0.3.6}/pyproject.toml +4 -2
  4. {batch_analytics-0.3.5 → batch_analytics-0.3.6}/src/batch_analytics.egg-info/PKG-INFO +3 -2
  5. {batch_analytics-0.3.5 → batch_analytics-0.3.6}/src/batch_analytics.egg-info/requires.txt +1 -0
  6. {batch_analytics-0.3.5 → batch_analytics-0.3.6}/setup.cfg +0 -0
  7. {batch_analytics-0.3.5 → batch_analytics-0.3.6}/src/batch_analytics/__init__.py +0 -0
  8. {batch_analytics-0.3.5 → batch_analytics-0.3.6}/src/batch_analytics/__main__.py +0 -0
  9. {batch_analytics-0.3.5 → batch_analytics-0.3.6}/src/batch_analytics/analytics/__init__.py +0 -0
  10. {batch_analytics-0.3.5 → batch_analytics-0.3.6}/src/batch_analytics/analytics/correlation.py +0 -0
  11. {batch_analytics-0.3.5 → batch_analytics-0.3.6}/src/batch_analytics/analytics/linear_regression.py +0 -0
  12. {batch_analytics-0.3.5 → batch_analytics-0.3.6}/src/batch_analytics/analytics/pca_clustering.py +0 -0
  13. {batch_analytics-0.3.5 → batch_analytics-0.3.6}/src/batch_analytics/analytics/t_test.py +0 -0
  14. {batch_analytics-0.3.5 → batch_analytics-0.3.6}/src/batch_analytics/config.py +0 -0
  15. {batch_analytics-0.3.5 → batch_analytics-0.3.6}/src/batch_analytics/extract.py +0 -0
  16. {batch_analytics-0.3.5 → batch_analytics-0.3.6}/src/batch_analytics/job_runner.py +0 -0
  17. {batch_analytics-0.3.5 → batch_analytics-0.3.6}/src/batch_analytics/log.py +0 -0
  18. {batch_analytics-0.3.5 → batch_analytics-0.3.6}/src/batch_analytics/modules.py +0 -0
  19. {batch_analytics-0.3.5 → batch_analytics-0.3.6}/src/batch_analytics/output/__init__.py +0 -0
  20. {batch_analytics-0.3.5 → batch_analytics-0.3.6}/src/batch_analytics/output/base.py +0 -0
  21. {batch_analytics-0.3.5 → batch_analytics-0.3.6}/src/batch_analytics/output/clickhouse.py +0 -0
  22. {batch_analytics-0.3.5 → batch_analytics-0.3.6}/src/batch_analytics/output/local.py +0 -0
  23. {batch_analytics-0.3.5 → batch_analytics-0.3.6}/src/batch_analytics/output/s3.py +0 -0
  24. {batch_analytics-0.3.5 → batch_analytics-0.3.6}/src/batch_analytics/transform.py +0 -0
  25. {batch_analytics-0.3.5 → batch_analytics-0.3.6}/src/batch_analytics.egg-info/SOURCES.txt +0 -0
  26. {batch_analytics-0.3.5 → batch_analytics-0.3.6}/src/batch_analytics.egg-info/dependency_links.txt +0 -0
  27. {batch_analytics-0.3.5 → batch_analytics-0.3.6}/src/batch_analytics.egg-info/entry_points.txt +0 -0
  28. {batch_analytics-0.3.5 → batch_analytics-0.3.6}/src/batch_analytics.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: batch-analytics
3
- Version: 0.3.5
3
+ Version: 0.3.6
4
4
  Summary: PySpark batch analytics: Extract, Transform, Stage, and analytical modules (linear regression, correlation, PCA, t-test).
5
5
  Author: Litewave Analytics Team
6
6
  License: MIT
@@ -8,6 +8,7 @@ Requires-Python: >=3.8
8
8
  Description-Content-Type: text/markdown
9
9
  Requires-Dist: pyspark<3.6,>=3.4
10
10
  Requires-Dist: numpy>=1.19.0
11
+ Requires-Dist: scipy>=1.5.0
11
12
  Provides-Extra: dev
12
13
  Requires-Dist: pytest>=7.0; extra == "dev"
13
14
  Provides-Extra: ttest
@@ -65,7 +66,7 @@ analytics/
65
66
  pip install -e .
66
67
  # or install every runtime dependency used anywhere in the package, then editable:
67
68
  pip install -r requirements.txt && pip install -e .
68
- # PyPI wheel pulls numpy automatically (pyspark.ml); extras: ttest, s3, clickhouse, output, full
69
+ # PyPI install includes numpy and scipy (t-test); extras: s3, clickhouse, output, full
69
70
  pip install "batch-analytics[full]"
70
71
  ```
71
72
 
@@ -36,7 +36,7 @@ analytics/
36
36
  pip install -e .
37
37
  # or install every runtime dependency used anywhere in the package, then editable:
38
38
  pip install -r requirements.txt && pip install -e .
39
- # PyPI wheel pulls numpy automatically (pyspark.ml); extras: ttest, s3, clickhouse, output, full
39
+ # PyPI install includes numpy and scipy (t-test); extras: s3, clickhouse, output, full
40
40
  pip install "batch-analytics[full]"
41
41
  ```
42
42
 
@@ -4,20 +4,22 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "batch-analytics"
7
- version = "0.3.5"
7
+ version = "0.3.6"
8
8
  description = "PySpark batch analytics: Extract, Transform, Stage, and analytical modules (linear regression, correlation, PCA, t-test)."
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.8"
11
11
  dependencies = [
12
12
  "pyspark>=3.4,<3.6",
13
13
  "numpy>=1.19.0",
14
+ # Welch t-test (t_test.py); keep on core deps so `pip install batch-analytics` works in minimal driver images
15
+ "scipy>=1.5.0",
14
16
  ]
15
17
  authors = [{ name = "Litewave Analytics Team" }]
16
18
  license = { text = "MIT" }
17
19
 
18
20
  [project.optional-dependencies]
19
21
  dev = ["pytest>=7.0"]
20
- # Welch t-test module (batch_analytics.analytics.t_test)
22
+ # Legacy: scipy is a core dependency; kept so `pip install "batch-analytics[ttest]"` still resolves.
21
23
  ttest = ["scipy>=1.5.0"]
22
24
  s3 = ["boto3>=1.28"]
23
25
  # 0.9+ uses list[...] etc. and breaks on Python 3.8; 3.9+ can take current clickhouse-connect.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: batch-analytics
3
- Version: 0.3.5
3
+ Version: 0.3.6
4
4
  Summary: PySpark batch analytics: Extract, Transform, Stage, and analytical modules (linear regression, correlation, PCA, t-test).
5
5
  Author: Litewave Analytics Team
6
6
  License: MIT
@@ -8,6 +8,7 @@ Requires-Python: >=3.8
8
8
  Description-Content-Type: text/markdown
9
9
  Requires-Dist: pyspark<3.6,>=3.4
10
10
  Requires-Dist: numpy>=1.19.0
11
+ Requires-Dist: scipy>=1.5.0
11
12
  Provides-Extra: dev
12
13
  Requires-Dist: pytest>=7.0; extra == "dev"
13
14
  Provides-Extra: ttest
@@ -65,7 +66,7 @@ analytics/
65
66
  pip install -e .
66
67
  # or install every runtime dependency used anywhere in the package, then editable:
67
68
  pip install -r requirements.txt && pip install -e .
68
- # PyPI wheel pulls numpy automatically (pyspark.ml); extras: ttest, s3, clickhouse, output, full
69
+ # PyPI install includes numpy and scipy (t-test); extras: s3, clickhouse, output, full
69
70
  pip install "batch-analytics[full]"
70
71
  ```
71
72
 
@@ -1,5 +1,6 @@
1
1
  pyspark<3.6,>=3.4
2
2
  numpy>=1.19.0
3
+ scipy>=1.5.0
3
4
 
4
5
  [clickhouse]
5
6