Skip to content

Commit

Permalink
Update __init__.py, increment dev version
Browse files Browse the repository at this point in the history
  • Loading branch information
shaunporwal committed Feb 20, 2025
1 parent eb9c6d3 commit 2afae14
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
11 changes: 6 additions & 5 deletions dcurves/__init__.py
Original file line number Diff line number Diff line change
@@ -1,20 +1,21 @@
"""
Decision Curve Analysis in Python
Modules exported by this package:
Functions exported by this package:
- `dca`
- `plot_graphs`
- `prevalence`
- `risks`
- `load_test_data.load_binary_df`
- `load_test_data.load_survival_df`
- `load_test_data.load_case_control_df`
"""

__version__ = "1.1.2.2"

import os
from dcurves import load_test_data
from dcurves.dca import dca
from dcurves.plot_graphs import plot_graphs

__version__ = "1.1.2.4"

data = os.path.join(os.path.dirname(os.path.abspath(__file__)), "data")
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "dcurves"
version = "1.1.2.3"
version = "1.1.2.4"
description = "A Python package for Decision Curve Analysis to evaluate prediction models, molecular markers, and diagnostic tests."
authors = [
"Shaun Porwal <[email protected]>",
Expand Down

0 comments on commit 2afae14

Please sign in to comment.