Skip to content

Commit

Permalink
package data pattern included in pyproject (#46)
Browse files Browse the repository at this point in the history
* data folder path fix

* version bump
  • Loading branch information
sbilge authored Jun 13, 2024
1 parent 3be1b52 commit ca9018f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
5 changes: 3 additions & 2 deletions .pyproject_generation/pyproject_custom.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
[project]
name = "ghga_transpiler"
version = "2.1.3"

version = "2.1.4"
description = "GHGA-Transpiler - excel to JSON converter"
dependencies = [
"typer >= 0.12",
Expand All @@ -15,7 +16,7 @@ dependencies = [
Repository = "https://github.com/ghga-de/ghga-transpiler"

[tool.setuptools.package-data]
configs = ["*.yaml"]
"ghga_transpiler.configs" = ["*.yaml"]

[project.scripts]
ghga-transpiler = "ghga_transpiler.__main__:run"
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ classifiers = [
"Intended Audience :: Developers",
]
name = "ghga_transpiler"
version = "2.1.3"
version = "2.1.4"
description = "GHGA-Transpiler - excel to JSON converter"
dependencies = [
"typer >= 0.12",
Expand All @@ -47,7 +47,7 @@ where = [
]

[tool.setuptools.package-data]
configs = [
"ghga_transpiler.configs" = [
"*.yaml",
]

Expand Down
2 changes: 1 addition & 1 deletion src/ghga_transpiler/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

from openpyxl.xml import DEFUSEDXML

__version__ = "2.1.1"
__version__ = "2.1.4"

if not DEFUSEDXML:
raise RuntimeError(
Expand Down

0 comments on commit ca9018f

Please sign in to comment.