-
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.
Fixed: Fixed namespace scope of the library. Fixed README. Changed: B…
…umped the version.
- Loading branch information
Showing
7 changed files
with
41 additions
and
204 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
Large diffs are not rendered by default.
Oops, something went wrong.
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,7 +1,7 @@ | ||
[metadata] | ||
|
||
name = polar_diagrams | ||
version = 1.0.3 | ||
version = 1.0.4 | ||
author = Aleksandar Anžel | ||
author_email = [email protected] | ||
description = Interactive Polar Diagrams for Model Comparison | ||
|
This file was deleted.
Oops, something went wrong.
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,15 @@ | ||
# Read version from installed package | ||
from importlib.metadata import version | ||
__version__ = version(__name__) | ||
|
||
__all__ = ['df_calculate_td_properties', 'df_calculate_mid_properties', | ||
'df_calculate_all_properties', 'chart_create_taylor_diagram', | ||
'chart_create_mi_diagram', 'chart_create_all_diagrams'] | ||
|
||
# Populate package namespace | ||
from .polar_diagrams import df_calculate_td_properties # noqa | ||
from .polar_diagrams import df_calculate_mid_properties # noqa | ||
from .polar_diagrams import df_calculate_all_properties # noqa | ||
from .polar_diagrams import chart_create_taylor_diagram # noqa | ||
from .polar_diagrams import chart_create_mi_diagram # noqa | ||
from .polar_diagrams import chart_create_all_diagrams # noqa |
File renamed without changes.