Skip to content

Commit 437b388

Browse files
committed
Use the module name as the directory name
Version bump 0.1.2
1 parent 7bf2f00 commit 437b388

7 files changed

Lines changed: 23 additions & 5 deletions

File tree

__init__.py

Lines changed: 0 additions & 1 deletion
This file was deleted.

pyproject.toml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "zoo-runner-common"
7-
version = "0.1.1"
7+
version = "0.1.2"
88
description = "Shared utilities for ZOO-Project CWL runners"
99
readme = "README.md"
1010
requires-python = ">=3.10"
@@ -35,5 +35,6 @@ Repository = "https://github.com/ZOO-Project/zoo-runner-common"
3535
Issues = "https://github.com/ZOO-Project/zoo-runner-common/issues"
3636
Changelog = "https://github.com/ZOO-Project/zoo-runner-common/blob/main/CHANGELOG.md"
3737

38-
[tool.setuptools]
39-
py-modules = ["base_runner", "zoo_conf", "zoostub"]
38+
[tool.setuptools.packages.find]
39+
where = ["."]
40+
include = ["zoo_runner_common*"]

zoo_runner_common/__init__.py

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
"""ZOO-Project Runner Common - Shared utilities for CWL runners."""
2+
3+
from zoo_runner_common.base_runner import BaseRunner
4+
from zoo_runner_common.zoo_conf import ZooConf, ZooInputs, ZooOutputs, CWLWorkflow
5+
from zoo_runner_common.handlers import ExecutionHandler
6+
from zoo_runner_common.zoostub import ZooStub
7+
8+
__all__ = [
9+
"BaseRunner",
10+
"ZooConf",
11+
"ZooInputs",
12+
"ZooOutputs",
13+
"CWLWorkflow",
14+
"ExecutionHandler",
15+
"ZooStub",
16+
]
17+
18+
__version__ = "0.1.1"
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
zoo = ZooStub()
1717

18-
from zoo_conf import CWLWorkflow, ZooConf, ZooInputs, ZooOutputs
18+
from zoo_runner_common.zoo_conf import CWLWorkflow, ZooConf, ZooInputs, ZooOutputs
1919

2020
logger = logging.getLogger()
2121

File renamed without changes.

0 commit comments

Comments
 (0)