diff --git a/_viash.yaml b/_viash.yaml index 626b71f8..1bd4ecc9 100644 --- a/_viash.yaml +++ b/_viash.yaml @@ -97,7 +97,9 @@ authors: github: jkobject orcid: 0000-0002-2818-9728 config_mods: | - .runners[.type == "nextflow"].config.labels := { lowmem : "memory = 20.Gb", midmem : "memory = 50.Gb", highmem : "memory = 100.Gb", lowcpu : "cpus = 5", midcpu : "cpus = 15", highcpu : "cpus = 30", lowtime : "time = 1.h", midtime : "time = 4.h", hightime : "time = 8.h", veryhightime : "time = 24.h" } + .runners[.type == "nextflow"].config.labels := { lowmem : "memory = 20.Gb", midmem : "memory = 50.Gb", highmem : "memory = 100.Gb", lowcpu : "cpus = 5", midcpu : "cpus = 15", highcpu : "cpus = 30", lowtime : "time = 1.h", midtime : "time = 4.h", hightime : "time = 8.h", veryhightime : "time = 24.h" }; + .resources += { path: "/common/python_helpers/__init__.py"} + repositories: - name: openproblems diff --git a/common b/common index b60eda08..ce2eae99 160000 --- a/common +++ b/common @@ -1 +1 @@ -Subproject commit b60eda085e9cd505ec169fa30cc7e919e8563ad2 +Subproject commit ce2eae9957152dd8e7a1c5a8ba250aabca2f4a74 diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 00000000..b71fbe9f --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,16 @@ +[build-system] +requires = ["setuptools>=70"] +build-backend = "setuptools.build_meta" + +[project] +name = "task_batch_integration" +authors = [{name = "Robrecht Cannoodt", email = "robrecht@data-intuitive.com"}] +readme = "README.md" +version = "0.1.0" +description = "A test python wrapper for viash" + +[tool.setuptools.package-data] +"*" = ["*", ".*"] + +[tool.setuptools.package-dir] +task_batch_integration = "target/executable" diff --git a/target/executable/__init__.py b/target/executable/__init__.py new file mode 100644 index 00000000..e69de29b