bidviz 1.1.1__tar.gz → 1.1.3__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 (42) hide show
  1. {bidviz-1.1.1 → bidviz-1.1.3}/PKG-INFO +1 -1
  2. {bidviz-1.1.1 → bidviz-1.1.3}/bidviz/__init__.py +1 -1
  3. {bidviz-1.1.1 → bidviz-1.1.3}/bidviz.egg-info/PKG-INFO +1 -1
  4. {bidviz-1.1.1 → bidviz-1.1.3}/pyproject.toml +1 -1
  5. {bidviz-1.1.1 → bidviz-1.1.3}/LICENSE +0 -0
  6. {bidviz-1.1.1 → bidviz-1.1.3}/README.md +0 -0
  7. {bidviz-1.1.1 → bidviz-1.1.3}/bidviz/core/__init__.py +0 -0
  8. {bidviz-1.1.1 → bidviz-1.1.3}/bidviz/core/base.py +0 -0
  9. {bidviz-1.1.1 → bidviz-1.1.3}/bidviz/exceptions.py +0 -0
  10. {bidviz-1.1.1 → bidviz-1.1.3}/bidviz/polars/__init__.py +0 -0
  11. {bidviz-1.1.1 → bidviz-1.1.3}/bidviz/polars/core/__init__.py +0 -0
  12. {bidviz-1.1.1 → bidviz-1.1.3}/bidviz/polars/core/base.py +0 -0
  13. {bidviz-1.1.1 → bidviz-1.1.3}/bidviz/polars/transformer.py +0 -0
  14. {bidviz-1.1.1 → bidviz-1.1.3}/bidviz/polars/transformers/__init__.py +0 -0
  15. {bidviz-1.1.1 → bidviz-1.1.3}/bidviz/polars/transformers/bar.py +0 -0
  16. {bidviz-1.1.1 → bidviz-1.1.3}/bidviz/polars/transformers/heatmap.py +0 -0
  17. {bidviz-1.1.1 → bidviz-1.1.3}/bidviz/polars/transformers/kpi.py +0 -0
  18. {bidviz-1.1.1 → bidviz-1.1.3}/bidviz/polars/transformers/line.py +0 -0
  19. {bidviz-1.1.1 → bidviz-1.1.3}/bidviz/polars/transformers/other.py +0 -0
  20. {bidviz-1.1.1 → bidviz-1.1.3}/bidviz/polars/transformers/pie.py +0 -0
  21. {bidviz-1.1.1 → bidviz-1.1.3}/bidviz/polars/transformers/table.py +0 -0
  22. {bidviz-1.1.1 → bidviz-1.1.3}/bidviz/polars/utils.py +0 -0
  23. {bidviz-1.1.1 → bidviz-1.1.3}/bidviz/transformer.py +0 -0
  24. {bidviz-1.1.1 → bidviz-1.1.3}/bidviz/transformers/__init__.py +0 -0
  25. {bidviz-1.1.1 → bidviz-1.1.3}/bidviz/transformers/bar.py +0 -0
  26. {bidviz-1.1.1 → bidviz-1.1.3}/bidviz/transformers/heatmap.py +0 -0
  27. {bidviz-1.1.1 → bidviz-1.1.3}/bidviz/transformers/kpi.py +0 -0
  28. {bidviz-1.1.1 → bidviz-1.1.3}/bidviz/transformers/line.py +0 -0
  29. {bidviz-1.1.1 → bidviz-1.1.3}/bidviz/transformers/other.py +0 -0
  30. {bidviz-1.1.1 → bidviz-1.1.3}/bidviz/transformers/pie.py +0 -0
  31. {bidviz-1.1.1 → bidviz-1.1.3}/bidviz/transformers/table.py +0 -0
  32. {bidviz-1.1.1 → bidviz-1.1.3}/bidviz/utils.py +0 -0
  33. {bidviz-1.1.1 → bidviz-1.1.3}/bidviz.egg-info/SOURCES.txt +0 -0
  34. {bidviz-1.1.1 → bidviz-1.1.3}/bidviz.egg-info/dependency_links.txt +0 -0
  35. {bidviz-1.1.1 → bidviz-1.1.3}/bidviz.egg-info/requires.txt +0 -0
  36. {bidviz-1.1.1 → bidviz-1.1.3}/bidviz.egg-info/top_level.txt +0 -0
  37. {bidviz-1.1.1 → bidviz-1.1.3}/setup.cfg +0 -0
  38. {bidviz-1.1.1 → bidviz-1.1.3}/tests/test_exceptions.py +0 -0
  39. {bidviz-1.1.1 → bidviz-1.1.3}/tests/test_polars_transformer.py +0 -0
  40. {bidviz-1.1.1 → bidviz-1.1.3}/tests/test_polars_utils.py +0 -0
  41. {bidviz-1.1.1 → bidviz-1.1.3}/tests/test_transformer.py +0 -0
  42. {bidviz-1.1.1 → bidviz-1.1.3}/tests/test_utils.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: bidviz
3
- Version: 1.1.1
3
+ Version: 1.1.3
4
4
  Summary: A powerful, configurable backend visualization data transformation library
5
5
  Author-email: Mohammad Amin Khara <kharama8709@gmail.com>
6
6
  License: MIT
@@ -13,4 +13,4 @@ __author__ = "Mohammad Amin Khara"
13
13
  from bidviz.exceptions import TransformationError, ValidationError
14
14
  from bidviz.transformer import ChartTransformer
15
15
 
16
- __all__ = ["ChartTransformer", "TransformationError", "ValidationError"]
16
+ __all__ = ["ChartTransformer", "TransformationError", "ValidationError", "polars"]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: bidviz
3
- Version: 1.1.1
3
+ Version: 1.1.3
4
4
  Summary: A powerful, configurable backend visualization data transformation library
5
5
  Author-email: Mohammad Amin Khara <kharama8709@gmail.com>
6
6
  License: MIT
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "bidviz"
7
- version = "1.1.1"
7
+ version = "1.1.3"
8
8
  description = "A powerful, configurable backend visualization data transformation library"
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.9"
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