-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
66 lines (60 loc) · 1.71 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
[tool.poetry]
name = "dcurves"
version = "1.1.1"
description = "A Python package for Decision Curve Analysis to evaluate prediction models, molecular markers, and diagnostic tests. For RELEASE NOTES, check RELEASE.md here: https://github.com/MSKCC-Epi-Bio/dcurves/RELEASE.md"
authors = ["shaunporwal <[email protected]>", "rohansingh <[email protected]>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.9"
lifelines = "~0.27.7"
matplotlib = "^3.7.1"
pandas = ">=1.5.3,<3.0.0"
statsmodels = "0.14.4"
typing = "~3.7.4.3"
mkdocs = "^1.4.2"
mkdocstrings = {extras = ["python"], version = "^0.20.0"}
mkdocs-material = "^9.0.14"
setuptools = "^68.1.2"
[tool.poetry.group.dev.dependencies]
pytest = "~7.2.1"
jupyterlab = "~3.6.1"
tox = "^4.4.6"
pytest-cov = "^4.0.0"
black = "^23.1.0"
pylint = "^3.3.1"
pytest-mock = "^3.11.1"
tomli = "^2.0.1"
scikit-learn = "^1.3.2"
autopep8 = "^2.3.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[repositories]
pypi = {url = "https://pypi.org/"}
[tool.pytest.ini_options]
filterwarnings = [
"ignore::DeprecationWarning:_pytest.assertion.rewrite",
"ignore::DeprecationWarning:numpy.core",
"ignore::DeprecationWarning:pkg_resources",
"ignore::DeprecationWarning:lifelines",
"ignore::DeprecationWarning:patsy",
"ignore:numpy.core.einsumfunc:DeprecationWarning",
"ignore:pkg_resources is deprecated:DeprecationWarning",
"ignore:datetime.datetime.utcnow\\(\\) is deprecated:DeprecationWarning"
]
[tool.black]
line-length = 100
target-version = ['py39', 'py310', 'py311', 'py312']
include = '\.pyi?$'
extend-exclude = '''
/(
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| build
| dist
)/
'''