-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
14 changed files
with
1,439 additions
and
26 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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
include README.md | ||
include LICENSE | ||
include requirements.txt | ||
recursive-include bela/data *.gz |
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,19 +1,28 @@ | ||
# -*- coding: utf-8 -*- | ||
|
||
''' | ||
BELA - A Python package for processing ELAN-based multi-lingual transcriptions. | ||
""" | ||
BLIP ELAN Language Annotation (BELA) package | ||
""" | ||
|
||
Latest version can be found at https://github.com/letuananh/bela | ||
:copyright: (c) 2020 Le Tuan Anh <[email protected]> | ||
:license: MIT, see LICENSE for more details. | ||
''' | ||
|
||
######################################################################## | ||
# This code is a part of BELA package: https://github.com/letuananh/bela | ||
# :developer: Le Tuan Anh <[email protected]> | ||
# :license: MIT, see LICENSE for more details. | ||
|
||
from .__version__ import __author__, __email__, __copyright__, __maintainer__ | ||
from .__version__ import __credits__, __license__, __description__, __url__ | ||
from .__version__ import __version_major__, __version_long__, __version__, __status__ | ||
|
||
from .common import maketime, getlang | ||
from .common import is_special_token | ||
from .common import process_text, tokenize | ||
from .common import KNOWN_LANGUAGES, KNOWN_LANGUAGE_CLASSES | ||
from .bela1 import Bela1 | ||
from .bela2 import Bela2, SPECIAL_SPEAKER, SPECIAL_SPEAKER_NAME | ||
|
||
|
||
__all__ = ['__version__', '__author__', '__description__', '__copyright__'] | ||
__all__ = ['Bela1', 'maketime', 'getlang', 'is_special_token', | ||
'process_token', 'process_text', 'tokenize', | ||
'KNOWN_LANGUAGES', 'KNOWN_LANGUAGE_CLASSES', | ||
'SPECIAL_SPEAKER', 'SPECIAL_SPEAKER_NAME', | ||
'Bela2', | ||
"__version__", "__author__", "__description__", "__copyright__"] |
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,15 +1,19 @@ | ||
# -*- coding: utf-8 -*- | ||
# BELA's package version information | ||
|
||
# This code is a part of BELA package: https://github.com/letuananh/bela | ||
# :developer: Le Tuan Anh <[email protected]> | ||
# :license: MIT, see LICENSE for more details. | ||
|
||
# chirptext's package version information | ||
__author__ = "Le Tuan Anh" | ||
__email__ = "[email protected]" | ||
__copyright__ = "Copyright (c) 2020, Le Tuan Anh" | ||
__copyright__ = "Copyright (c) 2019, Le Tuan Anh, BLIP lab NTU, Singapore" | ||
__credits__ = [] | ||
__license__ = "MIT License" | ||
__description__ = "A Python package for processing ELAN-based multi-lingual transcriptions." | ||
__url__ = "https://github.com/letuananh/bela/" | ||
__description__ = "BLIP ELAN Language Annotation package" | ||
__url__ = "https://github.com/BLIPNTU/belacon" | ||
__maintainer__ = "Le Tuan Anh" | ||
__version_major__ = "0.1" | ||
__version__ = "{}a1".format(__version_major__) | ||
__version_long__ = "{} - Alpha".format(__version_major__) | ||
__status__ = "Prototype" | ||
__version_major__ = "2.0.0" | ||
__version__ = "{}a19".format(__version_major__) | ||
__version_long__ = "{} - alpha".format(__version_major__) | ||
__status__ = "3 - Alpha" |
Oops, something went wrong.