27 lines
609 B
TOML
Executable File
27 lines
609 B
TOML
Executable File
[tool.poetry]
|
|
name = "kalpa"
|
|
version = "0.0.1"
|
|
description = "Groups up and runs full run."
|
|
authors = ["Deepak Mallubhotla <dmallubhotla+github@gmail.com>"]
|
|
readme = "README.md"
|
|
|
|
[tool.poetry.dependencies]
|
|
python = ">=3.8.1,<3.10"
|
|
pdme = "^1.5.0"
|
|
|
|
|
|
deepdog = "^1.4.0"
|
|
[tool.poetry.group.dev.dependencies]
|
|
black = "^24.8.0"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
[tool.poetry.scripts]
|
|
stage01 = "kalpa.stages.stage01:main"
|
|
stage02 = "kalpa.stages.stage02:main"
|
|
stage03 = "kalpa.stages.stage03:main"
|
|
stage04 = "kalpa.stages.stage04:main"
|
|
sd4 = "kalpa.stages:main"
|