Skip to content

Commit

Permalink
Merge branch 'master' of github.com:cltk/cltk
Browse files Browse the repository at this point in the history
  • Loading branch information
kylepjohnson committed Sep 22, 2017
2 parents bf09132 + 87d46e1 commit 3d91c81
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 11 deletions.
12 changes: 5 additions & 7 deletions cltk/corpus/arabic/utils/pyarabic/araby.py
Expand Up @@ -11,19 +11,17 @@
* Mesure tashkeel similarity ( Harakats, fully or partially vocalized, similarity with a template)
* Letters normalization ( Ligatures and Hamza)
Includes code written by 'Arabtechies', 'Arabeyes', 'Taha Zerrouki'.
"""
from __future__ import absolute_import

import re

if __name__ == "__main__":
import stack
else:
from cltk.corpus.arabic.utils.pyarabic import stack
from cltk.corpus.arabic.utils.pyarabic import stack

__author__ = 'Taha Zerrouki taha.zerrouki@gmail.com'
__author__ = ['Taha Zerrouki taha.zerrouki@gmail.com']
__license__ = 'GPL'
__copyright__ = ['Arabtechies', 'Arabeyes', 'Taha Zerrouki']


COMMA = '\u060C'
Expand Down
9 changes: 5 additions & 4 deletions cltk/corpus/arabic/utils/pyarabic/stack.py
@@ -1,9 +1,10 @@
"""Stack module
Includes code written by 'Arabtechies', 'Arabeyes', 'Taha Zerrouki'.
"""
Stack module
"""
__author__ = 'Taha Zerrouki taha.zerrouki@gmail.com'

__author__ = ['Taha Zerrouki taha.zerrouki@gmail.com']
__license__ = 'GPL'
__copyright__ = ['Arabtechies', 'Arabeyes', 'Taha Zerrouki']

class Stack :
"""
Expand Down

0 comments on commit 3d91c81

Please sign in to comment.