This fixes a lot of awkwardness that came from having the record() functionality inside of store.py. It is still broken, but is much closer to actually working now. I also sketched some data and io functionality, which has no tests and is not yet working at all.
50 lines
926 B
TOML
50 lines
926 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.10"
|
|
click = "^8.1.3"
|
|
colorama = "^0.4.5"
|
|
loguru = "^0.6.0"
|
|
pre-commit = "^2.20.0"
|
|
|
|
[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"
|
|
|
|
[tool.tox]
|
|
legacy_tox_ini = """
|
|
[tox]
|
|
envlist = mypy,py310
|
|
isolated_build = true
|
|
|
|
[testenv]
|
|
deps =
|
|
pytest
|
|
pytest-cov
|
|
coverage
|
|
commands =
|
|
pytest --cov {envsitepackagesdir}/nancy
|
|
|
|
[testenv:mypy]
|
|
deps =
|
|
mypy
|
|
pytest
|
|
commands =
|
|
mypy --strict --ignore-missing-imports --no-incremental -p nancy
|
|
mypy --strict --no-incremental tests/
|
|
"""
|