From b6b4036f9b365ff0d2e68d5843ccf48ac663e443 Mon Sep 17 00:00:00 2001 From: Abdullah Diab Date: Sun, 29 Jan 2017 10:58:38 +0100 Subject: [PATCH] Include default-config.ini in setup.py --- setup.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index ba4625f..07bcd31 100755 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ setup( name = "arabic_reshaper", description = "Reconstruct Arabic sentences to be used in applications that don't support Arabic", - version = '2.0.0', + version = '2.0.1', platforms = "ALL", license = "GPL", packages = ['arabic_reshaper'], @@ -16,6 +16,7 @@ maintainer = "Abdullah Diab", maintainer_email = "mpcabd@gmail.com", package_dir = { 'arabic_reshaper' : '.' }, + package_data = { 'arabic_reshaper' : [ 'default-config.ini' ] }, keywords = "arabic shaping reshaping reshaper", url = "https://mpcabd.xyz/python-arabic-text-reshaper/", download_url = "https://github.com/mpcabd/python-arabic-reshaper/tarball/master", @@ -24,6 +25,7 @@ "Operating System :: OS Independent", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3.5", + "Programming Language :: Python :: 3.6", "Topic :: Software Development :: Libraries :: Python Modules", ], )