Rewrote pipeline to use grpc flow

This commit is contained in:
2023-04-10 19:05:31 -06:00
parent cd69ff50f7
commit 719778fde3
6 changed files with 224 additions and 3 deletions
+18
View File
@@ -0,0 +1,18 @@
[tool.poetry]
name = "test-pipeline"
version = "0.1.0"
description = "test pipeline"
authors = ["restitux <restitux@ohea.xyz>"]
license = "GPLv3"
packages = [{include = "test_pipeline"}]
[tool.poetry.dependencies]
python = "^3.10"
cursorius-pipeline-api-v2 = {git = "https://git.ohea.xyz/cursorius/pipeline-api", subdirectory = "python"}
[tool.poetry.scripts]
pipeline = 'test_pipeline.__main__:main'
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"