This repository has been archived on 2022-02-23. You can view files and clone it, but cannot push or open issues or pull requests.
pathfinder/pyproject.toml

30 lines
640 B
TOML

[tool.poetry]
name = "pathfinder"
version = "0.0.1"
description = ""
authors = ["Deepak <dmallubhotla+github@gmail.com>"]
[tool.poetry.dependencies]
python = "^3.8,<3.10"
numpy = "^1.21.1"
scipy = "~1.5"
more-itertools = "^8.8.0"
[tool.poetry.dev-dependencies]
pytest = ">=6"
flake8 = "^3.8.4"
pytest-cov = "^2.10.1"
mypy = "^0.790"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "--junitxml pytest.xml --cov pathfinder --cov-report=xml:coverage.xml --cov-fail-under=90"
junit_family = "xunit1"
[tool.mypy]
plugins = "numpy.typing.mypy_plugin"