-
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.
Use setuptools_scm, update CHANGELOG (#96)
- Loading branch information
1 parent
e5bdb7b
commit b1dfbb0
Showing
5 changed files
with
37 additions
and
14 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
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,16 +1,17 @@ | ||
__all__ = [ | ||
"__title__", "__summary__", "__uri__", "__version__", "__author__", "__email__", | ||
"__title__", | ||
"__summary__", | ||
"__uri__", | ||
"__author__", | ||
"__email__", | ||
] | ||
|
||
__title__ = "gbd_mapping" | ||
__summary__ = "A programmatically accessible mapping of gbd entities." | ||
__uri__ = "https://github.com/ihmeuw/gbd_mapping" | ||
|
||
__version__ = "3.1.0" | ||
|
||
__author__ = "The vivarium developers" | ||
__email__ = "[email protected]" | ||
|
||
__license__ = "BSD-3-Clause" | ||
__copyright__ = f"Copyright 2022 {__author__}" | ||
|
||
__copyright__ = f"Copyright 2023 {__author__}" |
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,18 @@ | ||
from .id import me_id, rei_id, c_id, s_id, cov_id, hs_id, scalar, UNKNOWN, UnknownEntityError | ||
from .base_template import GbdRecord, ModelableEntity, Restrictions, Tmred, Categories | ||
from ._version import __version__ | ||
from .base_template import Categories, GbdRecord, ModelableEntity, Restrictions, Tmred | ||
from .cause import Cause, causes | ||
from .sequela import Sequela, Healthstate, sequelae | ||
from .covariate import Covariate, covariates | ||
from .etiology import Etiology, etiologies | ||
from .id import ( | ||
UNKNOWN, | ||
UnknownEntityError, | ||
c_id, | ||
cov_id, | ||
hs_id, | ||
me_id, | ||
rei_id, | ||
s_id, | ||
scalar, | ||
) | ||
from .risk_factor import RiskFactor, risk_factors | ||
from .covariate import Covariate, covariates | ||
from .sequela import Healthstate, Sequela, sequelae |