ghga-transpiler 2.1.1__tar.gz → 2.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 (25) hide show
  1. {ghga_transpiler-2.1.1/src/ghga_transpiler.egg-info → ghga_transpiler-2.1.3}/PKG-INFO +1 -1
  2. {ghga_transpiler-2.1.1 → ghga_transpiler-2.1.3}/pyproject.toml +6 -1
  3. {ghga_transpiler-2.1.1 → ghga_transpiler-2.1.3}/src/ghga_transpiler/cli.py +2 -1
  4. {ghga_transpiler-2.1.1 → ghga_transpiler-2.1.3/src/ghga_transpiler.egg-info}/PKG-INFO +1 -1
  5. {ghga_transpiler-2.1.1 → ghga_transpiler-2.1.3}/LICENSE +0 -0
  6. {ghga_transpiler-2.1.1 → ghga_transpiler-2.1.3}/README.md +0 -0
  7. {ghga_transpiler-2.1.1 → ghga_transpiler-2.1.3}/setup.cfg +0 -0
  8. {ghga_transpiler-2.1.1 → ghga_transpiler-2.1.3}/src/ghga_transpiler/__init__.py +0 -0
  9. {ghga_transpiler-2.1.1 → ghga_transpiler-2.1.3}/src/ghga_transpiler/__main__.py +0 -0
  10. {ghga_transpiler-2.1.1 → ghga_transpiler-2.1.3}/src/ghga_transpiler/config/__init__.py +0 -0
  11. {ghga_transpiler-2.1.1 → ghga_transpiler-2.1.3}/src/ghga_transpiler/config/config.py +0 -0
  12. {ghga_transpiler-2.1.1 → ghga_transpiler-2.1.3}/src/ghga_transpiler/config/exceptions.py +0 -0
  13. {ghga_transpiler-2.1.1 → ghga_transpiler-2.1.3}/src/ghga_transpiler/configs/__init__.py +0 -0
  14. {ghga_transpiler-2.1.1 → ghga_transpiler-2.1.3}/src/ghga_transpiler/core.py +0 -0
  15. {ghga_transpiler-2.1.1 → ghga_transpiler-2.1.3}/src/ghga_transpiler/io.py +0 -0
  16. {ghga_transpiler-2.1.1 → ghga_transpiler-2.1.3}/src/ghga_transpiler/transformations.py +0 -0
  17. {ghga_transpiler-2.1.1 → ghga_transpiler-2.1.3}/src/ghga_transpiler.egg-info/SOURCES.txt +0 -0
  18. {ghga_transpiler-2.1.1 → ghga_transpiler-2.1.3}/src/ghga_transpiler.egg-info/dependency_links.txt +0 -0
  19. {ghga_transpiler-2.1.1 → ghga_transpiler-2.1.3}/src/ghga_transpiler.egg-info/entry_points.txt +0 -0
  20. {ghga_transpiler-2.1.1 → ghga_transpiler-2.1.3}/src/ghga_transpiler.egg-info/requires.txt +0 -0
  21. {ghga_transpiler-2.1.1 → ghga_transpiler-2.1.3}/src/ghga_transpiler.egg-info/top_level.txt +0 -0
  22. {ghga_transpiler-2.1.1 → ghga_transpiler-2.1.3}/tests/test_convert_workbook.py +0 -0
  23. {ghga_transpiler-2.1.1 → ghga_transpiler-2.1.3}/tests/test_create_config.py +0 -0
  24. {ghga_transpiler-2.1.1 → ghga_transpiler-2.1.3}/tests/test_io.py +0 -0
  25. {ghga_transpiler-2.1.1 → ghga_transpiler-2.1.3}/tests/test_process_workbook.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: ghga_transpiler
3
- Version: 2.1.1
3
+ Version: 2.1.3
4
4
  Summary: GHGA-Transpiler - excel to JSON converter
5
5
  Author-email: "German Human Genome Phenome Archive (GHGA)" <contact@ghga.de>
6
6
  License: Apache 2.0
@@ -21,7 +21,7 @@ classifiers = [
21
21
  "Intended Audience :: Developers",
22
22
  ]
23
23
  name = "ghga_transpiler"
24
- version = "2.1.1"
24
+ version = "2.1.3"
25
25
  description = "GHGA-Transpiler - excel to JSON converter"
26
26
  dependencies = [
27
27
  "typer >= 0.12",
@@ -46,6 +46,11 @@ where = [
46
46
  "src",
47
47
  ]
48
48
 
49
+ [tool.setuptools.package-data]
50
+ configs = [
51
+ "*.yaml",
52
+ ]
53
+
49
54
  [tool.ruff]
50
55
  exclude = [
51
56
  ".git",
@@ -18,6 +18,7 @@
18
18
 
19
19
  import sys
20
20
  from pathlib import Path
21
+ from typing import Optional
21
22
 
22
23
  import typer
23
24
 
@@ -44,7 +45,7 @@ def transpile(
44
45
  dir_okay=False,
45
46
  readable=True,
46
47
  ),
47
- output_file: Path | None = typer.Argument(
48
+ output_file: Optional[Path] = typer.Argument( # noqa: UP007 (typer issue #461)
48
49
  None, help="The path to output file (JSON).", dir_okay=False
49
50
  ),
50
51
  force: bool = typer.Option(
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: ghga_transpiler
3
- Version: 2.1.1
3
+ Version: 2.1.3
4
4
  Summary: GHGA-Transpiler - excel to JSON converter
5
5
  Author-email: "German Human Genome Phenome Archive (GHGA)" <contact@ghga.de>
6
6
  License: Apache 2.0
File without changes