This uses colorama so that is added to poetry. Next I'll add the diff printing to the record command and have the corresponding store method use the diff as input.
25 lines
521 B
TOML
25 lines
521 B
TOML
[tool.poetry]
|
|
name = "nancy"
|
|
version = "0.1.0"
|
|
description = "Composable tracking of scientific data provenance"
|
|
authors = ["Jacob Hinkle <jacob.hinkle@jhink.org>"]
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.7"
|
|
click = "^8.1.3"
|
|
colorama = "^0.4.5"
|
|
|
|
[tool.poetry.dev-dependencies]
|
|
black = "^22.8.0"
|
|
pytest = "^7.1.3"
|
|
coverage = "^6.4.4"
|
|
pytest-cov = "^3.0.0"
|
|
pytest-black = "^0.3.12"
|
|
|
|
[tool.poetry.scripts]
|
|
nancy = "nancy.cli:main"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core>=1.0.0"]
|
|
build-backend = "poetry.core.masonry.api"
|