phlo-testing 0.2.0__tar.gz → 0.2.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 (26) hide show
  1. {phlo_testing-0.2.0 → phlo_testing-0.2.3}/PKG-INFO +1 -1
  2. {phlo_testing-0.2.0 → phlo_testing-0.2.3}/pyproject.toml +26 -21
  3. {phlo_testing-0.2.0 → phlo_testing-0.2.3}/src/phlo_testing/__init__.py +1 -1
  4. {phlo_testing-0.2.0 → phlo_testing-0.2.3}/src/phlo_testing.egg-info/PKG-INFO +1 -1
  5. {phlo_testing-0.2.0 → phlo_testing-0.2.3}/README.md +0 -0
  6. {phlo_testing-0.2.0 → phlo_testing-0.2.3}/setup.cfg +0 -0
  7. {phlo_testing-0.2.0 → phlo_testing-0.2.3}/src/phlo_testing/conftest_template.py +0 -0
  8. {phlo_testing-0.2.0 → phlo_testing-0.2.3}/src/phlo_testing/execution.py +0 -0
  9. {phlo_testing-0.2.0 → phlo_testing-0.2.3}/src/phlo_testing/fixtures.py +0 -0
  10. {phlo_testing-0.2.0 → phlo_testing-0.2.3}/src/phlo_testing/hooks.py +0 -0
  11. {phlo_testing-0.2.0 → phlo_testing-0.2.3}/src/phlo_testing/local_mode.py +0 -0
  12. {phlo_testing-0.2.0 → phlo_testing-0.2.3}/src/phlo_testing/mock_dlt.py +0 -0
  13. {phlo_testing-0.2.0 → phlo_testing-0.2.3}/src/phlo_testing/mock_iceberg.py +0 -0
  14. {phlo_testing-0.2.0 → phlo_testing-0.2.3}/src/phlo_testing/mock_trino.py +0 -0
  15. {phlo_testing-0.2.0 → phlo_testing-0.2.3}/src/phlo_testing/non_versioned_profile_harness.py +0 -0
  16. {phlo_testing-0.2.0 → phlo_testing-0.2.3}/src/phlo_testing/placeholders.py +0 -0
  17. {phlo_testing-0.2.0 → phlo_testing-0.2.3}/src/phlo_testing/profile_harness.py +0 -0
  18. {phlo_testing-0.2.0 → phlo_testing-0.2.3}/src/phlo_testing/utils.py +0 -0
  19. {phlo_testing-0.2.0 → phlo_testing-0.2.3}/src/phlo_testing.egg-info/SOURCES.txt +0 -0
  20. {phlo_testing-0.2.0 → phlo_testing-0.2.3}/src/phlo_testing.egg-info/dependency_links.txt +0 -0
  21. {phlo_testing-0.2.0 → phlo_testing-0.2.3}/src/phlo_testing.egg-info/requires.txt +0 -0
  22. {phlo_testing-0.2.0 → phlo_testing-0.2.3}/src/phlo_testing.egg-info/top_level.txt +0 -0
  23. {phlo_testing-0.2.0 → phlo_testing-0.2.3}/tests/test_integration_testing.py +0 -0
  24. {phlo_testing-0.2.0 → phlo_testing-0.2.3}/tests/test_non_versioned_profile_harness.py +0 -0
  25. {phlo_testing-0.2.0 → phlo_testing-0.2.3}/tests/test_profile_harness.py +0 -0
  26. {phlo_testing-0.2.0 → phlo_testing-0.2.3}/tests/test_testing_infrastructure.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: phlo-testing
3
- Version: 0.2.0
3
+ Version: 0.2.3
4
4
  Summary: Testing utilities for Phlo
5
5
  Author-email: Phlo Team <team@phlo.dev>
6
6
  License: MIT
@@ -1,17 +1,11 @@
1
1
  [build-system]
2
- requires = ["setuptools>=45", "wheel"]
3
2
  build-backend = "setuptools.build_meta"
3
+ requires = [
4
+ "setuptools>=45",
5
+ "wheel",
6
+ ]
4
7
 
5
8
  [project]
6
- name = "phlo-testing"
7
- version = "0.2.0"
8
- description = "Testing utilities for Phlo"
9
- readme = {text = "Testing utilities for Phlo.", content-type = "text/plain"}
10
- requires-python = ">=3.11"
11
- authors = [
12
- {name = "Phlo Team", email = "team@phlo.dev"},
13
- ]
14
- license = {text = "MIT"}
15
9
  dependencies = [
16
10
  "phlo>=0.1.0",
17
11
  "duckdb>=0.9.0",
@@ -21,25 +15,36 @@ dependencies = [
21
15
  "pandera>=0.26.1",
22
16
  "dlt>=1.18.2",
23
17
  ]
18
+ description = "Testing utilities for Phlo"
19
+ name = "phlo-testing"
20
+ requires-python = ">=3.11"
21
+ version = "0.2.3"
22
+
23
+ [[project.authors]]
24
+ email = "team@phlo.dev"
25
+ name = "Phlo Team"
26
+
27
+ [project.license]
28
+ text = "MIT"
24
29
 
25
30
  [project.optional-dependencies]
26
31
  dev = [
27
32
  "pytest>=7.0",
28
33
  "ruff>=0.1.0",
29
34
  ]
30
- dlt = [
31
- "phlo-dlt>=0.1.0",
32
- ]
33
- trino = [
34
- "phlo-trino>=0.1.0",
35
- ]
36
-
37
- [tool.setuptools]
38
- package-dir = {"" = "src"}
35
+ dlt = ["phlo-dlt>=0.1.0"]
36
+ trino = ["phlo-trino>=0.1.0"]
39
37
 
40
- [tool.setuptools.packages.find]
41
- where = ["src"]
38
+ [project.readme]
39
+ content-type = "text/plain"
40
+ text = "Testing utilities for Phlo."
42
41
 
43
42
  [tool.ruff]
44
43
  line-length = 100
45
44
  target-version = "py311"
45
+
46
+ [tool.setuptools.package-dir]
47
+ "" = "src"
48
+
49
+ [tool.setuptools.packages.find]
50
+ where = ["src"]
@@ -341,4 +341,4 @@ __all__ = [
341
341
  if _FIXTURES_AVAILABLE:
342
342
  __all__.extend(_FIXTURE_EXPORTS)
343
343
 
344
- __version__ = "1.0.0"
344
+ __version__ = "0.2.3"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: phlo-testing
3
- Version: 0.2.0
3
+ Version: 0.2.3
4
4
  Summary: Testing utilities for Phlo
5
5
  Author-email: Phlo Team <team@phlo.dev>
6
6
  License: MIT
File without changes
File without changes