pypeline-runner 0.1.0__py3-none-any.whl → 0.1.1__py3-none-any.whl

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.
pypeline/__init__.py CHANGED
@@ -1 +1 @@
1
- __version__ = "0.1.0"
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 = "*"
pypeline/main.py CHANGED
@@ -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,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
 
@@ -1,4 +1,4 @@
1
- pypeline/__init__.py,sha256=kUR5RAFc7HCeiqdlX36dZOHkUI5wI6V_43RpEcD8b-0,22
1
+ pypeline/__init__.py,sha256=rnObPjuBcEStqSO0S6gsdS_ot8ITOQjVj_-P1LUUYpg,22
2
2
  pypeline/__run.py,sha256=TCdaX05Qm3g8T4QYryKB25Xxf0L5Km7hFOHe1mK9vI0,350
3
3
  pypeline/domain/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
4
4
  pypeline/domain/artifacts.py,sha256=qXshnk9umi0AVGV4m5iEiy_MQ5Ad2LDZwI8OULU-qMk,1355
@@ -12,19 +12,20 @@ pypeline/kickstart/templates/bootstrap/bootstrap.ps1,sha256=IcgNohR8Fllz234DXQOl
12
12
  pypeline/kickstart/templates/bootstrap/bootstrap.py,sha256=9DstyqJFVcBHOs5cS2dU43FY7dLusid5KEi55TeaJwk,15971
13
13
  pypeline/kickstart/templates/project/.gitignore,sha256=vX-IAjvkjxgNIYBQmqaRRhWRO2uONl0GR355PiQPjIk,13
14
14
  pypeline/kickstart/templates/project/poetry.toml,sha256=q5gF2MWexTFIahJ6StUa3y62HDUrRW7t8kGFszZhgp4,34
15
+ pypeline/kickstart/templates/project/pypeline.ps1,sha256=tkiXrsMsNM43WJdmWJRhis3TIjwAVUjO2xAP9sT31Fo,36
15
16
  pypeline/kickstart/templates/project/pypeline.yaml,sha256=i9YSqpS2o-_Bzl69fvdOFVyYRMsDCtDy8usBpk-hqnE,219
16
- pypeline/kickstart/templates/project/pyproject.toml,sha256=nz0K93bcLW3zikxdg39Pl030VoXZiUj78mFfgAw0Fk8,202
17
+ pypeline/kickstart/templates/project/pyproject.toml,sha256=yc6RCo-bUo1PXF91XfM-dButgfxU16Uud34NidgJ0zQ,225
17
18
  pypeline/kickstart/templates/project/scoopfile.json,sha256=DcfZ8jYf9hmPHM-AWwnPKQJCzRG3fCuYtMeoY01nkag,219
18
19
  pypeline/kickstart/templates/project/steps/my_step.py,sha256=YNRdb7ofqo3PxMQe8Vhtf7K9eZclv-6J0IwMrd3E70w,651
19
- pypeline/main.py,sha256=f8SMN_RUU35lv7dNnBDIzrBOpe76YGuRS6ouJ1zkNlI,3365
20
+ pypeline/main.py,sha256=i8SjRH74VWzgOOel1OB6XpkIJrff3mVdOkgH5yokjEI,3406
20
21
  pypeline/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
21
22
  pypeline/pypeline.py,sha256=yZ4nIBtI7Yrz-d8rmslERdtwcJiBf1D9tpOHFR5iAvM,4235
22
23
  pypeline/steps/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
23
24
  pypeline/steps/create_venv.py,sha256=HeoJYDdyGEOwFnK_9eYEK32l6F9MpEsYSiM91uLVt2o,1599
24
25
  pypeline/steps/scoop_install.py,sha256=KozpYMG1qITo21u6cIf9USkjIp2gvZ3V2DMzhi8fVyg,3257
25
26
  pypeline/steps/west_install.py,sha256=QUopdIJne6OFhaXNlbOYrOGDPmNy6kgqZfOiUWQN7xY,1860
26
- pypeline_runner-0.1.0.dist-info/LICENSE,sha256=sKxdoqSmW9ezvPvt0ZGJbneyA0SBcm0GiqzTv2jN230,1066
27
- pypeline_runner-0.1.0.dist-info/METADATA,sha256=Iu5SHcaY61DS-qKvDhwYLh9bkwGvAkwnE1mm-U7UCbo,5755
28
- pypeline_runner-0.1.0.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
29
- pypeline_runner-0.1.0.dist-info/entry_points.txt,sha256=pe1u0uuhPI_yeQ0KjEw6jK-EvQfPcZwBSajgbAdKz1o,47
30
- pypeline_runner-0.1.0.dist-info/RECORD,,
27
+ pypeline_runner-0.1.1.dist-info/LICENSE,sha256=sKxdoqSmW9ezvPvt0ZGJbneyA0SBcm0GiqzTv2jN230,1066
28
+ pypeline_runner-0.1.1.dist-info/METADATA,sha256=oet1IAv-F7lBhTXdVwFNGQ6u_G-5OLOl7dYcDfQnqQE,5850
29
+ pypeline_runner-0.1.1.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
30
+ pypeline_runner-0.1.1.dist-info/entry_points.txt,sha256=pe1u0uuhPI_yeQ0KjEw6jK-EvQfPcZwBSajgbAdKz1o,47
31
+ pypeline_runner-0.1.1.dist-info/RECORD,,