-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
2 changed files
with
4 additions
and
10 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 |
---|---|---|
@@ -1,10 +1,10 @@ | ||
from pkg_resources import get_distribution, DistributionNotFound | ||
|
||
__name__ = "OAI-PMH Harvester" | ||
__package = "oaiharvest" | ||
__name__ = "oaiharvest" | ||
__package__ = "oaiharvest" | ||
__all__ = ['exceptions', 'harvest', 'metadata', 'registry'] | ||
try: | ||
__version__ = get_distribution(__package).version | ||
__version__ = get_distribution(__package__).version | ||
except DistributionNotFound: | ||
# package is not installed | ||
pass |
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,2 @@ | ||
# -*- coding: utf-8 -*- | ||
"""TODO: Document __init__.py here. | ||
Copyright (C) 2017, Auto Trader UK | ||
Created 19. Apr 2017 17:42 | ||
Creator: john.harrison | ||
""" | ||
__package__ = "oaiharvest" |