forked from gerstung-lab/genomicsurveillance
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
40 lines (34 loc) · 886 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
38
39
[tool.poetry]
name = "genomicsurveillance"
packages = [
{ include = "genomicsurveillance" },
]
version = "0.5.3"
description = ""
authors = ["Harald Vohringer <[email protected]>"]
[tool.poetry.dependencies]
python = "^3.7.1"
numpyro = "0.6.0"
pandas = "^1.1.0"
sphinx = {version = "^3", optional = true}
uk-covid19 = {version = "^1.2.0", optional = true}
geopandas = {version = "^0.9.0", optional = true}
matplotlib = {version = "^3.3.4", optional = true}
[tool.poetry.dev-dependencies]
pytest = "^6.2.2"
pytest-cov = "^2.11.1"
black = "^20.8b1"
isort = "^5.7.0"
flake8 = "^3.8.4"
bandit = "^1.7.0"
safety = "^1.10.3"
jupyter = "^1.0.0"
jupyterlab = "^3.0.9"
[tool.poetry.extras]
docs = ["sphinx"]
uk-covid19 = ["uk-covid19"]
geopandas = ["geopandas"]
matplotlib = ["matplotlib"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"