-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
71 lines (62 loc) · 1.57 KB
/
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
[tool.poetry]
name = "dask-modelling-example"
version = "1.0.0"
description = "Healthcare business modelling using DASK"
authors = ["David Plummer <28156158+DiaAzul@users.noreply.github.com>"]
license = "Apache-2"
[tool.poetry.dependencies]
python = "^3.9"
ipykernel = "^6.12.1"
dask = "^2022.4.0"
notebook = "^6.4.10"
pandas = "^1.4.2"
plotly = "^5.7.0"
graphviz = "^0.19.1"
Unipath = "^1.1"
[tool.poetry.dev-dependencies]
black = "^22.3.0"
pytest = "^7.1.1"
flake8 = "^4.0.1"
isort = "^5.10.1"
interrogate = "^1.5.0"
coverage = "^6.3.2"
pandera = "^0.10.1"
poetry2conda = "^0.3.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 88
[tool.isort]
profile = "hug"
src_paths = ["isort", "test"]
[tool.interrogate]
ignore-init-method = true
ignore-init-module = false
ignore-magic = false
ignore-semiprivate = false
ignore-private = false
ignore-property-decorators = false
ignore-module = false
ignore-nested-functions = false
ignore-nested-classes = true
ignore-setters = false
fail-under = 95
exclude = ["setup.py", "docs", "build"]
ignore-regex = ["^get$", "^mock_.*", ".*BaseClass.*"]
# possible values: 0 (minimal output), 1 (-v), 2 (-vv)
verbose = 2
quiet = false
whitelist-regex = []
color = true
omit-covered-files = false
generate-badge = "./assets"
badge-format = "svg"
[tool.poetry2conda]
name = "healthcare-model"
[tool.poetry2conda.dependencies]
ipykernel = { channel = "conda-forge" }
dask = { channel = "conda-forge" }
notebook = { channel = "conda-forge" }
graphviz = { channel = "pip" }
Unipath = { channel = "pip" }