-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (39 loc) · 1.55 KB
/
pyproject.toml
File metadata and controls
44 lines (39 loc) · 1.55 KB
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
[build-system]
requires = ["packaging", "setuptools >= 61", "setuptools_scm[toml]>=8", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "kombinekm"
description = "KoMbine is a software package for propagating statistical and systematic uncertainties in a biomedical analysis. KoMbine provides Kaplan-Meier curve analysis functionality, while ROC Picker provides similar functionality for ROC curves."
readme = "README.md"
license = {file = "LICENSE"}
authors = [
{name = "Heshy Roskes", email = "heshyr@gmail.com"}
]
requires-python = ">=3.11"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dynamic = ["version"]
dependencies = [
"gurobipy",
"matplotlib",
"numpy",
"scipy>=1.15",
]
[project.urls]
Homepage = "https://github.com/AstroPathJHU/KoMbine"
Repository = "https://github.com/AstroPathJHU/KoMbine"
[project.scripts]
rocpicker_mc = "roc_picker.command_line_interface:plot_systematics_mc_roc"
rocpicker_discrete = "roc_picker.command_line_interface:plot_discrete_roc"
rocpicker_delta_functions = "roc_picker.command_line_interface:plot_delta_functions_roc"
kombine = "kombine.command_line_interface:plot_km_likelihood"
kombine_twogroups = "kombine.command_line_interface:plot_km_likelihood_two_groups"
[tool.setuptools.packages.find]
include = ["roc_picker*", "kombine*"]
[tool.setuptools_scm]