-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
87 lines (71 loc) · 1.94 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
72
73
74
75
76
77
78
79
80
81
82
[tool.poetry]
name = "dcurves"
version = "1.0.6.5"
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 = "docs/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.13.5"
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 = "^2.16.1"
towncrier = "^22.12.0"
pytest-mock = "^3.11.1"
tomli = "^2.0.1"
scikit-learn = "^1.3.2"
[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:pkg_resources",
"ignore::DeprecationWarning:lifelines",
"ignore::DeprecationWarning:patsy"
]
[tool.towncrier]
directory = "newsfragments"
filename = "CHANGELOG.md"
template = "changelog.d/changelog_template.jinja"
start_string = "<!-- towncrier release notes start -->\n"
underlines = ["^", "~"]
issue_format = "GH-{issue}"
# Improvements
[[tool.towncrier.type]]
directory = "improvement"
name = "Improvement"
showcontent = true
# New Features
[[tool.towncrier.type]]
directory = "feature"
name = "Feature"
showcontent = true
# Bug Fixes
[[tool.towncrier.type]]
directory = "bugfix"
name = "Bugfix"
showcontent = true
# Additions
[[tool.towncrier.type]]
directory = "addition"
name = "Addition"
showcontent = true
# Removals
[[tool.towncrier.type]]
directory = "removal"
name = "Removal"
showcontent = true