-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
37 lines (32 loc) · 942 Bytes
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
[tool.poetry]
name = "pyidr"
version = "0.1.1"
description = "Python implementation of the irreproducible discovery rate"
authors = ["Fabian Hausmann <[email protected]>"]
[tool.poetry.dependencies]
python = "^3.7"
numpy = "^1.18.1"
scipy = "^1.4.1"
statsmodels = "^0.11.1"
matplotlib = "^3.2.1"
sphinx = { version = "^3.2.1", optional = true}
sphinx_rtd_theme = { version = "^0.5.0", optional = true}
rstcheck = { version = "^3.3.1", optional = true}
[tool.poetry.extras]
docs = ["sphinx", "sphinx_rtd_theme", "rstcheck"]
[tool.poetry.dev-dependencies]
pytest = "^6.0"
rpy2 = "^3.2.6"
ipykernel = "^5.1.4"
yapf = "^0.30.0"
pytest-cov = "^2.8.1"
prospector = {extras = ["with_mypy"], version = "^1.2.0"}
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-ra -q --cov=pyidr --cov-report=term --cov-branch"
testpaths = [
"tests"
]