-
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.
update template and niceup documentation
- Loading branch information
Showing
16 changed files
with
1,049 additions
and
565 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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
# Changes here will be overwritten by Copier | ||
project_slug=python | ||
package_dir=cmem_plugin_python | ||
|
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 |
---|---|---|
@@ -1,10 +1,11 @@ | ||
# Changes here will be overwritten by Copier | ||
_commit: v6.0.1 | ||
_commit: v7.0.0 | ||
_src_path: gh:eccenca/cmem-plugin-template | ||
author_mail: sebastian.tramp@eccenca.com | ||
author_name: Sebastian Tramp | ||
github_page: '' | ||
author_mail: cmempy-developer@eccenca.com | ||
author_name: eccenca GmbH | ||
github_page: https://github.com/eccenca/cmem-plugin-python | ||
project_description: Write ad-hoc transformations and workflow tasks with Python. | ||
project_slug: python | ||
pypi: false | ||
project_type: plugin | ||
pypi: true | ||
|
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,19 @@ | ||
# https://taskfile.dev | ||
--- | ||
version: '3' | ||
|
||
tasks: | ||
|
||
install: | ||
desc: Install plugin package in Corporate Memory | ||
cmds: | ||
- task build | ||
- poetry run cmemc admin workspace python install dist/cmem_plugin_python*.tar.gz | ||
- poetry run cmemc admin workspace python list-plugins | ||
|
||
uninstall: | ||
desc: Unnstall plugin package in Corporate Memory | ||
cmds: | ||
- task build | ||
- poetry run cmemc admin workspace python uninstall cmem-plugin-python | ||
- poetry run cmemc admin workspace python list-plugins |
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 |
---|---|---|
@@ -1 +1 @@ | ||
"""python - main package""" | ||
"""cmem-plugin-python""" |
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 |
---|---|---|
@@ -1,4 +1,5 @@ | ||
"""Python code transform plugin module""" | ||
|
||
from collections.abc import Sequence | ||
from typing import Any | ||
|
||
|
Oops, something went wrong.