-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #113 from fgcz/main
v1.13.10
- Loading branch information
Showing
21 changed files
with
471 additions
and
152 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta" | |
[project] | ||
name = "bfabric" | ||
description = "Python client for the B-Fabric WSDL API" | ||
version = "1.13.9" | ||
version = "1.13.10" | ||
license = { text = "GPL-3.0" } | ||
authors = [ | ||
{ name = "Christian Panse", email = "[email protected]" }, | ||
|
@@ -78,6 +78,8 @@ Repository = "https://github.com/fgcz/bfabricPy" | |
"bfabric_slurm_queue_status.py" = "bfabric_scripts.bfabric_slurm_queue_status:main" | ||
"bfabric_save_resource_description.py" = "bfabric_scripts.bfabric_save_resource_description:main" | ||
|
||
"bfabric-cli" = "bfabric_scripts.cli.__main__:app" | ||
|
||
[tool.setuptools.package-data] | ||
"*" = ["py.typed"] | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
import cyclopts | ||
|
||
from bfabric_scripts.cli.cli_external_job import app as _app_external_job | ||
from bfabric_scripts.cli.cli_read import app as _app_read | ||
from bfabric_scripts.cli.cli_workunit import app as _app_workunit | ||
|
||
app = cyclopts.App() | ||
app.command(_app_read, name="read") | ||
app.command(_app_external_job, name="external-job") | ||
app.command(_app_workunit, name="workunit") | ||
|
||
if __name__ == "__main__": | ||
app() |
Oops, something went wrong.