Add initial pipeline and build script

This commit is contained in:
2023-04-23 04:35:51 -06:00
commit 0346f2177b
7 changed files with 308 additions and 0 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"