argo-kedro 0.1.2__tar.gz → 0.1.3__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (27) hide show
  1. argo_kedro-0.1.3/MANIFEST.in +3 -0
  2. {argo_kedro-0.1.2 → argo_kedro-0.1.3}/PKG-INFO +1 -1
  3. {argo_kedro-0.1.2 → argo_kedro-0.1.3}/argo_kedro.egg-info/PKG-INFO +1 -1
  4. argo_kedro-0.1.3/argo_kedro.egg-info/entry_points.txt +5 -0
  5. argo_kedro-0.1.3/argo_kedro.egg-info/top_level.txt +1 -0
  6. {argo_kedro-0.1.2 → argo_kedro-0.1.3}/pyproject.toml +5 -5
  7. argo_kedro-0.1.2/MANIFEST.in +0 -3
  8. argo_kedro-0.1.2/argo_kedro.egg-info/entry_points.txt +0 -5
  9. argo_kedro-0.1.2/argo_kedro.egg-info/top_level.txt +0 -1
  10. {argo_kedro-0.1.2 → argo_kedro-0.1.3}/.gitignore +0 -0
  11. {argo_kedro-0.1.2 → argo_kedro-0.1.3}/.python-version +0 -0
  12. {argo_kedro-0.1.2 → argo_kedro-0.1.3}/LICENSE +0 -0
  13. {argo_kedro-0.1.2 → argo_kedro-0.1.3}/README.md +0 -0
  14. {argo_kedro-0.1.2 → argo_kedro-0.1.3}/argo_kedro/framework/__init__.py +0 -0
  15. {argo_kedro-0.1.2 → argo_kedro-0.1.3}/argo_kedro/framework/cli/__init__.py +0 -0
  16. {argo_kedro-0.1.2 → argo_kedro-0.1.3}/argo_kedro/framework/cli/cli.py +0 -0
  17. {argo_kedro-0.1.2 → argo_kedro-0.1.3}/argo_kedro/pipeline/__init__.py +0 -0
  18. {argo_kedro-0.1.2 → argo_kedro-0.1.3}/argo_kedro/pipeline/fused_pipeline.py +0 -0
  19. {argo_kedro-0.1.2 → argo_kedro-0.1.3}/argo_kedro/runners/__init__.py +0 -0
  20. {argo_kedro-0.1.2 → argo_kedro-0.1.3}/argo_kedro/runners/fuse_runner.py +0 -0
  21. {argo_kedro-0.1.2 → argo_kedro-0.1.3}/argo_kedro/templates/argo_wf_spec.tmpl +0 -0
  22. {argo_kedro-0.1.2 → argo_kedro-0.1.3}/argo_kedro.egg-info/SOURCES.txt +0 -0
  23. {argo_kedro-0.1.2 → argo_kedro-0.1.3}/argo_kedro.egg-info/dependency_links.txt +0 -0
  24. {argo_kedro-0.1.2 → argo_kedro-0.1.3}/argo_kedro.egg-info/requires.txt +0 -0
  25. {argo_kedro-0.1.2 → argo_kedro-0.1.3}/locally_building_guide.md +0 -0
  26. {argo_kedro-0.1.2 → argo_kedro-0.1.3}/setup.cfg +0 -0
  27. {argo_kedro-0.1.2 → argo_kedro-0.1.3}/uv.lock +0 -0
@@ -0,0 +1,3 @@
1
+ include README.md
2
+ include LICENSE
3
+ recursive-include argo_kedro *.tmpl
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: argo-kedro
3
- Version: 0.1.2
3
+ Version: 0.1.3
4
4
  Summary: Kedro plugin for running pipelines on Argo Workflows
5
5
  Author-email: Laurens Vijnck <laurens@everycure.org>, Nelson Alfonso <nelson@everycure.org>
6
6
  License: MIT
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: argo-kedro
3
- Version: 0.1.2
3
+ Version: 0.1.3
4
4
  Summary: Kedro plugin for running pipelines on Argo Workflows
5
5
  Author-email: Laurens Vijnck <laurens@everycure.org>, Nelson Alfonso <nelson@everycure.org>
6
6
  License: MIT
@@ -0,0 +1,5 @@
1
+ [kedro.global_commands]
2
+ run = argo_kedro.framework.cli.cli:cli
3
+
4
+ [kedro.project_commands]
5
+ argo = argo_kedro.framework.cli.cli:commands
@@ -0,0 +1 @@
1
+ argo_kedro
@@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta"
5
5
 
6
6
  [project]
7
7
  name = "argo-kedro"
8
- version = "0.1.2"
8
+ version = "0.1.3"
9
9
  description = "Kedro plugin for running pipelines on Argo Workflows"
10
10
  readme = "README.md"
11
11
  requires-python = ">=3.10"
@@ -40,16 +40,16 @@ Repository = "https://github.com/everycure-org/argo-kedro"
40
40
  Issues = "https://github.com/everycure-org/argo-kedro/issues"
41
41
 
42
42
  [project.entry-points."kedro.global_commands"]
43
- run = "kedro_argo.framework.cli.cli:cli"
43
+ run = "argo_kedro.framework.cli.cli:cli"
44
44
 
45
45
  [project.entry-points."kedro.project_commands"]
46
- argo = "kedro_argo.framework.cli.cli:commands"
46
+ argo = "argo_kedro.framework.cli.cli:commands"
47
47
 
48
48
  [tool.setuptools]
49
49
  include-package-data = true
50
50
 
51
51
  [tool.setuptools.packages.find]
52
- include = ["kedro_argo*"]
52
+ include = ["argo_kedro*"]
53
53
 
54
54
  [tool.setuptools.package-data]
55
- kedro_argo = ["**/*.tmpl"]
55
+ argo_kedro = ["**/*.tmpl"]
@@ -1,3 +0,0 @@
1
- include README.md
2
- include LICENSE
3
- recursive-include kedro_argo *.tmpl
@@ -1,5 +0,0 @@
1
- [kedro.global_commands]
2
- run = kedro_argo.framework.cli.cli:cli
3
-
4
- [kedro.project_commands]
5
- argo = kedro_argo.framework.cli.cli:commands
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes