[tool.poetry] name = "pathfinder" version = "0.0.1" description = "" authors = ["Deepak "] [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.910" [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 --cov-report=html" junit_family = "xunit1" [tool.mypy] plugins = "numpy.typing.mypy_plugin" [[tool.mypy.overrides]] module = [ "scipy", "scipy.optimize" ] ignore_missing_imports = true