-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into pre-commit-ci-update-config
- Loading branch information
Showing
14 changed files
with
587 additions
and
87 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,6 +13,7 @@ __pycache__/ | |
|
||
# Tests and coverage | ||
/data/ | ||
ehrapy_data/ | ||
/node_modules/ | ||
|
||
# docs | ||
|
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
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
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 |
---|---|---|
|
@@ -7,7 +7,7 @@ name = "ehrdata" | |
version = "0.0.1" | ||
description = "A Python package for EHR data" | ||
readme = "README.md" | ||
license = { file = "LICENSE" } | ||
license = "Apache-2.0" | ||
maintainers = [ | ||
{ name = "Eljas Roellin", email = "[email protected]" }, | ||
] | ||
|
@@ -36,6 +36,7 @@ optional-dependencies.dev = [ | |
] | ||
optional-dependencies.doc = [ | ||
"docutils>=0.8,!=0.18.*,!=0.19.*", | ||
"ehrdata[lamin]", | ||
"ipykernel", | ||
"ipython", | ||
"myst-nb>=1.1", | ||
|
@@ -57,6 +58,7 @@ optional-dependencies.lamin = [ | |
"bionty", | ||
"lamindb", | ||
"omop", | ||
"rich", | ||
] | ||
optional-dependencies.test = [ | ||
"coverage", | ||
|
@@ -75,7 +77,7 @@ installer = "uv" | |
features = [ "dev" ] | ||
|
||
[tool.hatch.envs.docs] | ||
extra-features = [ "doc" ] | ||
features = [ "doc" ] | ||
scripts.build = "sphinx-build -M html docs docs/_build {args}" | ||
scripts.open = "python -m webbrowser -t docs/_build/html/index.html" | ||
scripts.clean = "git clean -fdX -- {args:docs}" | ||
|
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,7 +1,8 @@ | ||
from importlib.metadata import version | ||
|
||
from . import dt, io, pl, pp, tl | ||
from .core import EHRData | ||
|
||
__all__ = ["dt", "io", "pl", "pp", "tl"] | ||
__all__ = ["EHRData", "dt", "io", "pl", "pp", "tl"] | ||
|
||
__version__ = version("ehrdata") |
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
from .ehrdata import EHRData |
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
R_LAYER_KEY = "r_layer" |
Oops, something went wrong.