-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bumped the version and added loading version from pyproject.toml (#36)
- Loading branch information
Showing
3 changed files
with
10 additions
and
6 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,9 +1,13 @@ | ||
"""The core functionality of metametric package.""" | ||
|
||
__version__ = "0.2.0" | ||
import importlib.metadata | ||
|
||
|
||
__version__ = importlib.metadata.version(__package__ or __name__) | ||
|
||
|
||
from metametric.core.metric import Metric, Variable # noqa: F401 | ||
from metametric.core.reduction import Reduction # noqa: F401 | ||
from metametric.core.metric_suite import MetricSuite, MetricFamily # noqa: F401 | ||
from metametric.core.constraint import MatchingConstraint # noqa: F401 | ||
from metametric.core.metric import Metric, Variable # noqa: F401 | ||
from metametric.core.metric_suite import MetricFamily, MetricSuite # noqa: F401 | ||
from metametric.core.path import Path # noqa: F401 | ||
from metametric.core.reduction import Reduction # noqa: F401 |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.