Skip to content

Commit a981806

Browse files
committed
bump version
1 parent 47e6583 commit a981806

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,7 @@ https://github.com/mpcabd/python-arabic-reshaper/tarball/master
248248

249249
## Version History
250250

251-
### 2.1.2
251+
### 2.1.3
252252

253253
* Remove dependency on `__version__.py` and `default-config.ini` files, as they were causing problems for people who package their apps using pyinstaller or buildozer.
254254

arabic_reshaper/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@
99
ENABLE_ALL_LIGATURES)
1010

1111

12-
__version__ = '2.1.2'
12+
__version__ = '2.1.3'

setup.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,16 @@
55

66
import os
77

8+
with open("README.md", "r", encoding="utf-8") as fh:
9+
long_description = fh.read()
10+
811
setup(
912
name="arabic_reshaper",
1013
description=("Reconstruct Arabic sentences to be used in"
1114
" applications that don't support Arabic"),
12-
version='2.1.2',
15+
long_description=long_description,
16+
long_description_content_type="text/markdown",
17+
version='2.1.3',
1318
platforms="ALL",
1419
license="MIT",
1520
packages=['arabic_reshaper'],
@@ -25,7 +30,6 @@
2530
maintainer="Abdullah Diab",
2631
maintainer_email="[email protected]",
2732
package_dir={'arabic_reshaper': 'arabic_reshaper'},
28-
package_data={'arabic_reshaper': ['default-config.ini']},
2933
test_suite='arabic_reshaper.tests',
3034
include_package_data=True,
3135
keywords="arabic shaping reshaping reshaper",

0 commit comments

Comments
 (0)