47 lines
819 B
TOML
47 lines
819 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.8"
|
|
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 = py38,py39,py310,mypy
|
|
isolated_build = true
|
|
|
|
[testenv]
|
|
deps =
|
|
pytest
|
|
pytest-cov
|
|
coverage
|
|
commands =
|
|
pytest --cov src/nancy
|
|
|
|
[testenv:mypy]
|
|
deps = mypy
|
|
commands =
|
|
mypy --strict -p nancy
|
|
"""
|