-
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.
Merge pull request #37 from pepkit/dev
Release 0.4.0
- Loading branch information
Showing
20 changed files
with
1,359 additions
and
196 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
include requirements/* | ||
include README.md | ||
include pephubclient/pephub_oauth/* | ||
include pephubclient/pephub_oauth/* | ||
include pephubclient/modules/* |
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,8 +1,26 @@ | ||
from pephubclient.pephubclient import PEPHubClient | ||
from pephubclient.helpers import is_registry_path, save_pep | ||
import logging | ||
import coloredlogs | ||
|
||
__app_name__ = "pephubclient" | ||
__version__ = "0.2.2" | ||
__version__ = "0.4.0" | ||
__author__ = "Oleksandr Khoroshevskyi, Rafal Stepien" | ||
|
||
|
||
__all__ = ["PEPHubClient", __app_name__, __author__, __version__] | ||
__all__ = [ | ||
"PEPHubClient", | ||
__app_name__, | ||
__author__, | ||
__version__, | ||
"is_registry_path", | ||
"save_pep", | ||
] | ||
|
||
|
||
_LOGGER = logging.getLogger(__app_name__) | ||
coloredlogs.install( | ||
logger=_LOGGER, | ||
datefmt="%H:%M:%S", | ||
fmt="[%(levelname)s] [%(asctime)s] %(message)s", | ||
) |
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
Oops, something went wrong.