-
Notifications
You must be signed in to change notification settings - Fork 1
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 #26 from letuananh/dev
yawlib 0.1 stable release
- Loading branch information
Showing
22 changed files
with
190 additions
and
627 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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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 +1 @@ | ||
texttaglib>=0.1.1a4 | ||
texttaglib>=0.1.1, <0.2 |
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,6 @@ | ||
# This code is a part of yawlib library: https://github.com/letuananh/yawlib | ||
# :copyright: (c) 2014 Le Tuan Anh <tuananh.ke@gmail.com> | ||
# :license: MIT, see LICENSE for more details. | ||
|
||
from . import wntk | ||
wntk.main() |
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 -*- | ||
|
||
# This code is a part of yawlib library: https://github.com/letuananh/yawlib | ||
# :copyright: (c) 2014 Le Tuan Anh <tuananh.ke@gmail.com> | ||
# :license: MIT, see LICENSE for more details. | ||
|
||
# yawlib's package version information | ||
__author__ = "Le Tuan Anh" | ||
__email__ = "tuananh.ke@gmail.com" | ||
__copyright__ = "Copyright (c) 2014, Le Tuan Anh" | ||
__credits__ = [] | ||
__license__ = "MIT License" | ||
__description__ = "YAWLib - Yet another WordNet library for Python" | ||
__description__ = "Python library for accessing major wordnet releases using relational databases for high performance batch processing" | ||
__url__ = "https://github.com/letuananh/yawlib" | ||
__maintainer__ = "Le Tuan Anh" | ||
__version_major__ = "0.1" | ||
__version__ = "{}a3".format(__version_major__) | ||
__version_long__ = "{} - Alpha 3".format(__version_major__) | ||
__status__ = "3 - Alpha" | ||
__version__ = "{}".format(__version_major__) | ||
__version_long__ = "{} Stable".format(__version_major__) | ||
__status__ = "5 - Production/Stable" |
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.