|
3 | 3 | '''
|
4 | 4 | Python implementation of Integrated Semantic Framework
|
5 | 5 |
|
6 |
| -`coolisf` is read `kul-eye-es-ef` officially (sometimes kul-is-f) |
| 6 | +`coolisf` is read `kul-eye-es-ef` officially |
7 | 7 |
|
8 |
| -Latest version can be found at https://github.com/letuananh/intsem.fx |
9 |
| -
|
10 |
| -References: |
11 |
| -@author: Le Tuan Anh <[email protected]> |
12 |
| -@license: MIT |
13 | 8 | '''
|
14 | 9 |
|
| 10 | +# Latest version can be found at https://github.com/letuananh/intsem.fx |
| 11 | +# |
15 | 12 | # Copyright (c) 2015, Le Tuan Anh <[email protected]>
|
16 | 13 | #
|
17 | 14 | # Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
32 | 29 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
33 | 30 | # THE SOFTWARE.
|
34 | 31 |
|
35 |
| -__author__ = "Le Tuan Anh <[email protected]>" |
36 |
| -__copyright__ = "Copyright 2015, intsem.fx" |
37 |
| -__credits__ = [] |
38 |
| -__license__ = "MIT License" |
39 |
| -__version__ = "0.2.1" |
40 |
| -__maintainer__ = "Le Tuan Anh" |
41 |
| - |
42 |
| -__status__ = "Prototype" |
43 |
| -__description__ = "Integrated Semantic Framework - Python implementation" |
44 |
| -__url__ = "https://github.com/letuananh/intsem.fx" |
45 |
| - |
46 | 32 | ########################################################################
|
47 | 33 |
|
| 34 | +from .__version__ import __author__, __email__, __copyright__, __maintainer__ |
| 35 | +from .__version__ import __credits__, __license__, __description__, __url__ |
| 36 | +from .__version__ import __version_major__, __version_long__, __version__, __status__ |
| 37 | + |
48 | 38 | from .lexsem import Lexsem, tag_gold
|
49 | 39 | from .ghub import GrammarHub
|
50 | 40 | from .config import read_config
|
51 | 41 |
|
52 |
| -__all__ = ['GrammarHub', 'Lexsem', 'tag_gold', 'read_config'] |
| 42 | +__all__ = ['GrammarHub', 'Lexsem', 'tag_gold', 'read_config', |
| 43 | + "__version__", "__author__", "__description__", "__copyright__"] |
0 commit comments