27 lines
743 B
TOML
Executable File
27 lines
743 B
TOML
Executable File
[tool.poetry]
|
|
name = "single-dipole-4"
|
|
version = "0.0.0"
|
|
description = "running single dipole 4 test"
|
|
authors = ["Deepak Mallubhotla <dmallubhotla+github@gmail.com>"]
|
|
readme = "README.md"
|
|
|
|
[tool.poetry.dependencies]
|
|
python = ">=3.8.1,<3.10"
|
|
deepdog = {path = "../deepdog", develop = true}
|
|
tantri = {path = "../tantri", develop = true}
|
|
pdme = "^1.5.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 = "single_dipole_4.stages.stage01:main"
|
|
stage02 = "single_dipole_4.stages.stage02:main"
|
|
stage03 = "single_dipole_4.stages.stage03:main"
|
|
stage04 = "single_dipole_4.stages.stage04:main"
|
|
sd4 = "single_dipole_4.stages:main" |