forked from fluidattacks/makes
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(back): fluidattacks#1155 support batch pipelines
- implement compute-on-batch with python - add support for batch pipelines - create and adjust python docs - add makePythonVscodeSettings util Signed-off-by: Daniel F. Murcia Rivera <danmur97@outlook.com>
- Loading branch information
Showing
42 changed files
with
1,922 additions
and
219 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
__pycache__ | ||
.vscode |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
{ | ||
__nixpkgs__, | ||
makePythonPyprojectPackage, | ||
makePythonVscodeSettings, | ||
projectPath, | ||
... | ||
}: let | ||
root = projectPath "/src/args/compute-on-aws-batch/batch-client"; | ||
pkg = import "${root}/entrypoint.nix" { | ||
inherit makePythonPyprojectPackage; | ||
nixpkgs = __nixpkgs__; | ||
}; | ||
in | ||
makePythonVscodeSettings { | ||
env = pkg.env.dev; | ||
bins = []; | ||
name = "makes-batch-client-env-dev"; | ||
} |
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
source "$(m . /dev/batchClient)/template" |
9 changes: 9 additions & 0 deletions
9
src/args/compute-on-aws-batch/batch-client/batch_client/__init__.py
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,9 @@ | ||
from ._logger import ( | ||
setup_logger, | ||
) | ||
from fa_purity.cmd import ( | ||
unsafe_unwrap, | ||
) | ||
|
||
__version__ = "1.0.0" | ||
unsafe_unwrap(setup_logger(__name__)) |
Oops, something went wrong.