[tool.poetry] name = "pdme" version = "0.5.0" description = "Python dipole model evaluator" authors = ["Deepak "] license = "GPL-3.0-only" readme = "README.md" [tool.poetry.dependencies] python = "^3.8,<3.10" numpy = "^1.21.1" scipy = "~1.5" [tool.poetry.dev-dependencies] pytest = ">=6" flake8 = "^3.8.4" pytest-cov = "^2.10.1" mypy = "^0.931" [build-system] requires = ["poetry>=0.12"] build-backend = "poetry.masonry.api" [tool.pytest.ini_options] testpaths = ["tests"] addopts = "--junitxml pytest.xml --cov pdme --cov-report=xml:coverage.xml --cov-fail-under=50 --cov-report=html" junit_family = "xunit1" [tool.mypy] plugins = "numpy.typing.mypy_plugin" [[tool.mypy.overrides]] module = [ "scipy", "scipy.optimize" ] ignore_missing_imports = true