-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add robust evaluation of the relative risk function (#54)
* add absolute value to robustify the log relative risk evaluation * update license and installation
- Loading branch information
Showing
5 changed files
with
26 additions
and
45 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,22 @@ | ||
[build-system] | ||
requires = ["setuptools"] | ||
build-backend = "setuptools.build_meta" | ||
build-backend = "setuptools.build_meta" | ||
|
||
[project] | ||
name = "mrtool" | ||
version = "0.1.3" | ||
description = "Featured nonlinear mixed effects model" | ||
readme = "README.rst" | ||
requires-python = ">=3.10" | ||
license = { file = "LICENSE" } | ||
authors = [ | ||
{ name = "IHME Math Sciences", email = "[email protected]" }, | ||
] | ||
dependencies = ["numpy", "pandas", "scipy", "xspline", "xarray", "limetr==0.0.6"] | ||
|
||
[project.optional-dependencies] | ||
dev = ["pytest", "pytest-mock"] | ||
doc = ["sphinx", "sphinx-autodoc-typehints", "furo"] | ||
|
||
[project.urls] | ||
github = "https://github.com/ihmeuw-msca/mrtool" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters