19 lines
488 B
TOML
19 lines
488 B
TOML
[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"
|