pypeline-runner 0.1.0__tar.gz → 0.1.1__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 (31) hide show
  1. {pypeline_runner-0.1.0 → pypeline_runner-0.1.1}/PKG-INFO +6 -5
  2. {pypeline_runner-0.1.0 → pypeline_runner-0.1.1}/README.md +4 -4
  3. {pypeline_runner-0.1.0 → pypeline_runner-0.1.1}/pyproject.toml +2 -1
  4. pypeline_runner-0.1.1/src/pypeline/__init__.py +1 -0
  5. pypeline_runner-0.1.1/src/pypeline/kickstart/templates/project/pypeline.ps1 +1 -0
  6. {pypeline_runner-0.1.0 → pypeline_runner-0.1.1}/src/pypeline/kickstart/templates/project/pyproject.toml +1 -0
  7. {pypeline_runner-0.1.0 → pypeline_runner-0.1.1}/src/pypeline/main.py +3 -1
  8. pypeline_runner-0.1.0/src/pypeline/__init__.py +0 -1
  9. {pypeline_runner-0.1.0 → pypeline_runner-0.1.1}/LICENSE +0 -0
  10. {pypeline_runner-0.1.0 → pypeline_runner-0.1.1}/src/pypeline/__run.py +0 -0
  11. {pypeline_runner-0.1.0 → pypeline_runner-0.1.1}/src/pypeline/domain/__init__.py +0 -0
  12. {pypeline_runner-0.1.0 → pypeline_runner-0.1.1}/src/pypeline/domain/artifacts.py +0 -0
  13. {pypeline_runner-0.1.0 → pypeline_runner-0.1.1}/src/pypeline/domain/config.py +0 -0
  14. {pypeline_runner-0.1.0 → pypeline_runner-0.1.1}/src/pypeline/domain/execution_context.py +0 -0
  15. {pypeline_runner-0.1.0 → pypeline_runner-0.1.1}/src/pypeline/domain/pipeline.py +0 -0
  16. {pypeline_runner-0.1.0 → pypeline_runner-0.1.1}/src/pypeline/domain/project_slurper.py +0 -0
  17. {pypeline_runner-0.1.0 → pypeline_runner-0.1.1}/src/pypeline/kickstart/__init__.py +0 -0
  18. {pypeline_runner-0.1.0 → pypeline_runner-0.1.1}/src/pypeline/kickstart/create.py +0 -0
  19. {pypeline_runner-0.1.0 → pypeline_runner-0.1.1}/src/pypeline/kickstart/templates/bootstrap/bootstrap.ps1 +0 -0
  20. {pypeline_runner-0.1.0 → pypeline_runner-0.1.1}/src/pypeline/kickstart/templates/bootstrap/bootstrap.py +0 -0
  21. {pypeline_runner-0.1.0 → pypeline_runner-0.1.1}/src/pypeline/kickstart/templates/project/.gitignore +0 -0
  22. {pypeline_runner-0.1.0 → pypeline_runner-0.1.1}/src/pypeline/kickstart/templates/project/poetry.toml +0 -0
  23. {pypeline_runner-0.1.0 → pypeline_runner-0.1.1}/src/pypeline/kickstart/templates/project/pypeline.yaml +0 -0
  24. {pypeline_runner-0.1.0 → pypeline_runner-0.1.1}/src/pypeline/kickstart/templates/project/scoopfile.json +0 -0
  25. {pypeline_runner-0.1.0 → pypeline_runner-0.1.1}/src/pypeline/kickstart/templates/project/steps/my_step.py +0 -0
  26. {pypeline_runner-0.1.0 → pypeline_runner-0.1.1}/src/pypeline/py.typed +0 -0
  27. {pypeline_runner-0.1.0 → pypeline_runner-0.1.1}/src/pypeline/pypeline.py +0 -0
  28. {pypeline_runner-0.1.0 → pypeline_runner-0.1.1}/src/pypeline/steps/__init__.py +0 -0
  29. {pypeline_runner-0.1.0 → pypeline_runner-0.1.1}/src/pypeline/steps/create_venv.py +0 -0
  30. {pypeline_runner-0.1.0 → pypeline_runner-0.1.1}/src/pypeline/steps/scoop_install.py +0 -0
  31. {pypeline_runner-0.1.0 → pypeline_runner-0.1.1}/src/pypeline/steps/west_install.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pypeline-runner
3
- Version: 0.1.0
3
+ Version: 0.1.1
4
4
  Summary: Configure and execute pipelines with Python (similar to GitHub workflows or Jenkins pipelines).
5
5
  Home-page: https://github.com/cuinixam/pypeline
6
6
  License: MIT
@@ -18,6 +18,7 @@ Classifier: Programming Language :: Python :: 3.11
18
18
  Classifier: Programming Language :: Python :: 3.12
19
19
  Classifier: Topic :: Software Development :: Libraries
20
20
  Requires-Dist: py-app-dev (>=2.1.0,<3.0.0)
21
+ Requires-Dist: pyyaml (>=6.0.1,<7.0.0)
21
22
  Requires-Dist: typer[all] (>=0.12.0,<0.13.0)
22
23
  Project-URL: Bug Tracker, https://github.com/cuinixam/pypeline/issues
23
24
  Project-URL: Changelog, https://github.com/cuinixam/pypeline/blob/main/CHANGELOG.md
@@ -31,8 +32,8 @@ Description-Content-Type: text/markdown
31
32
  <a href="https://github.com/cuinixam/pypeline/actions/workflows/ci.yml?query=branch%3Amain">
32
33
  <img src="https://img.shields.io/github/actions/workflow/status/cuinixam/pypeline/ci.yml?branch=main&label=CI&logo=github&style=flat-square" alt="CI Status" >
33
34
  </a>
34
- <a href="https://pypeline.readthedocs.io">
35
- <img src="https://img.shields.io/readthedocs/pypeline.svg?logo=read-the-docs&logoColor=fff&style=flat-square" alt="Documentation Status">
35
+ <a href="https://pypeline-runner.readthedocs.io">
36
+ <img src="https://img.shields.io/readthedocs/pypeline-runner.svg?logo=read-the-docs&logoColor=fff&style=flat-square" alt="Documentation Status">
36
37
  </a>
37
38
  <a href="https://codecov.io/gh/cuinixam/pypeline">
38
39
  <img src="https://img.shields.io/codecov/c/github/cuinixam/pypeline.svg?logo=codecov&logoColor=fff&style=flat-square" alt="Test coverage percentage">
@@ -57,13 +58,13 @@ Description-Content-Type: text/markdown
57
58
  <img src="https://img.shields.io/pypi/l/pypeline.svg?style=flat-square" alt="License">
58
59
  </p>
59
60
 
60
- Configure and execute steps for developing a python package.
61
+ Configure and execute pipelines with Python (similar to GitHub workflows or Jenkins pipelines).
61
62
 
62
63
  ## Installation
63
64
 
64
65
  Install this via pip (or your favourite package manager):
65
66
 
66
- `pip install pypeline`
67
+ `pip install pypeline-runner`
67
68
 
68
69
  ## Start developing
69
70
 
@@ -4,8 +4,8 @@
4
4
  <a href="https://github.com/cuinixam/pypeline/actions/workflows/ci.yml?query=branch%3Amain">
5
5
  <img src="https://img.shields.io/github/actions/workflow/status/cuinixam/pypeline/ci.yml?branch=main&label=CI&logo=github&style=flat-square" alt="CI Status" >
6
6
  </a>
7
- <a href="https://pypeline.readthedocs.io">
8
- <img src="https://img.shields.io/readthedocs/pypeline.svg?logo=read-the-docs&logoColor=fff&style=flat-square" alt="Documentation Status">
7
+ <a href="https://pypeline-runner.readthedocs.io">
8
+ <img src="https://img.shields.io/readthedocs/pypeline-runner.svg?logo=read-the-docs&logoColor=fff&style=flat-square" alt="Documentation Status">
9
9
  </a>
10
10
  <a href="https://codecov.io/gh/cuinixam/pypeline">
11
11
  <img src="https://img.shields.io/codecov/c/github/cuinixam/pypeline.svg?logo=codecov&logoColor=fff&style=flat-square" alt="Test coverage percentage">
@@ -30,13 +30,13 @@
30
30
  <img src="https://img.shields.io/pypi/l/pypeline.svg?style=flat-square" alt="License">
31
31
  </p>
32
32
 
33
- Configure and execute steps for developing a python package.
33
+ Configure and execute pipelines with Python (similar to GitHub workflows or Jenkins pipelines).
34
34
 
35
35
  ## Installation
36
36
 
37
37
  Install this via pip (or your favourite package manager):
38
38
 
39
- `pip install pypeline`
39
+ `pip install pypeline-runner`
40
40
 
41
41
  ## Start developing
42
42
 
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "pypeline-runner"
3
- version = "0.1.0"
3
+ version = "0.1.1"
4
4
  description = "Configure and execute pipelines with Python (similar to GitHub workflows or Jenkins pipelines)."
5
5
  authors = ["cuinixam <me@cuinixam.com>"]
6
6
  license = "MIT"
@@ -29,6 +29,7 @@ pypeline = "pypeline.main:main"
29
29
  python = "^3.10"
30
30
  py-app-dev = "^2.1.0"
31
31
  typer = {extras = ["all"], version = "^0.12.0"}
32
+ pyyaml = "^6.0.1"
32
33
 
33
34
  [tool.poetry.group.dev.dependencies]
34
35
  pytest = "^7.0"
@@ -0,0 +1 @@
1
+ __version__ = "0.1.1"
@@ -0,0 +1 @@
1
+ .\.venv\Scripts\pypeline.exe $args
@@ -6,3 +6,4 @@ authors = ["Your Name"]
6
6
 
7
7
  [tool.poetry.dependencies]
8
8
  python = ">=3.10,<3.13"
9
+ pypeline-runner = "*"
@@ -13,7 +13,9 @@ from pypeline.pypeline import PipelineScheduler, PipelineStepsExecutor
13
13
 
14
14
  package_name = "pypeline"
15
15
 
16
- app = typer.Typer(name=package_name, help="Configure and execute steps for developing a python package.", no_args_is_help=True, add_completion=False)
16
+ app = typer.Typer(
17
+ name=package_name, help="Configure and execute pipelines with Python (similar to GitHub workflows or Jenkins pipelines).", no_args_is_help=True, add_completion=False
18
+ )
17
19
 
18
20
 
19
21
  @app.callback(invoke_without_command=True)
@@ -1 +0,0 @@
1
- __version__ = "0.1.0"
File without changes