-
Notifications
You must be signed in to change notification settings - Fork 153
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Improve importing workflow + dist bug fix
- Loading branch information
Showing
6 changed files
with
29 additions
and
16 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,11 +1,15 @@ | ||
|
||
from .indexing import * | ||
from .comparing import * | ||
from .classifiers import * | ||
from .measures import * | ||
from recordlinkage.indexing import * | ||
from recordlinkage.comparing import * | ||
from recordlinkage.classifiers import * | ||
from recordlinkage.measures import * | ||
|
||
from ._version import get_versions | ||
# # import standardise | ||
# from recordlinkage.standardise.cleaning import * | ||
# from recordlinkage.standardise.encoding import * | ||
|
||
from recordlinkage._version import get_versions | ||
__version__ = get_versions()['version'] | ||
del get_versions | ||
|
||
__all__ = ['standardise.cleaning', 'standardise.phonetic', 'datasets'] | ||
__all__ = ['datasets'] |
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,2 +1,2 @@ | ||
from .cleaning import * | ||
from .encoding import * | ||
from recordlinkage.standardise.cleaning import * | ||
from recordlinkage.standardise.encoding import * |
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