26 lines
571 B
TOML
26 lines
571 B
TOML
[tool.poetry]
|
|
name = "pysuperconductor"
|
|
version = "0.1.1"
|
|
description = ""
|
|
authors = ["Deepak <dmallubhotla+github@gmail.com>"]
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.8"
|
|
scipy = "^1.5.4"
|
|
numpy = "1.19.3"
|
|
|
|
[tool.poetry.dev-dependencies]
|
|
pytest = ">=6"
|
|
flake8 = "^3.8.4"
|
|
pytest-cov = "^2.10.1"
|
|
mypy = "^0.790"
|
|
|
|
[tool.pytest.ini_options]
|
|
junit_family = "xunit1"
|
|
testpaths = ["tests"]
|
|
addopts = "--junitxml pytest.xml --cov pysuperconductor --cov-report=xml:coverage.xml --cov-fail-under=90"
|
|
|
|
[build-system]
|
|
requires = ["poetry>=0.12"]
|
|
build-backend = "poetry.masonry.api"
|