-
Notifications
You must be signed in to change notification settings - Fork 81
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* initial work * fix CI * Work done * Fix README
- Loading branch information
Showing
11 changed files
with
241 additions
and
102 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 |
---|---|---|
|
@@ -24,6 +24,7 @@ wheels/ | |
*.egg-info/ | ||
.installed.cfg | ||
*.egg | ||
.tox/ | ||
|
||
# Installer logs | ||
pip-log.txt | ||
|
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,12 +1,19 @@ | ||
# https://travis-ci.org/mpcabd/python-arabic-reshaper | ||
dist: xenial | ||
language: python | ||
python: | ||
- "2.7" | ||
- "3.5" | ||
- "3.6" | ||
- "3.7" | ||
install: | ||
- "pip install -e ." | ||
script: | ||
- "python setup.py test" | ||
- pip install tox | ||
- pip install -e . | ||
matrix: | ||
include: | ||
- python: 2.7 | ||
env: | ||
- TOX_ENV=py27 | ||
- python: 3.6 | ||
env: | ||
- TOX_ENV=py36 | ||
- python: 3.7 | ||
env: | ||
- TOX_ENV=py37 | ||
- python: 3.8 | ||
env: | ||
- TOX_ENV=py38 | ||
script: tox -e $TOX_ENV |
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,6 +1,12 @@ | ||
import os | ||
|
||
from .arabic_reshaper import reshape, default_reshaper, ArabicReshaper | ||
from .reshaper_config import (config_for_true_type_font, | ||
ENABLE_NO_LIGATURES, | ||
ENABLE_SENTENCES_LIGATURES, | ||
ENABLE_WORDS_LIGATURES, | ||
ENABLE_LETTERS_LIGATURES, | ||
ENABLE_ALL_LIGATURES) | ||
|
||
|
||
exec(open(os.path.join(os.path.dirname(__file__), '__version__.py')).read()) |
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 @@ | ||
__version__ = '2.0.15' | ||
__version__ = '2.1.0' |
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.