forked from mpcabd/python-arabic-reshaper
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·47 lines (43 loc) · 1.44 KB
/
setup.py
File metadata and controls
executable file
·47 lines (43 loc) · 1.44 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#!/usr/bin/env python
# coding=utf-8
from setuptools import setup
import os
exec(
open(os.path.join(
os.path.dirname(__file__),
'arabic_reshaper',
'__version__.py'
)).read()
)
setup(
name="arabic_reshaper",
description=("Reconstruct Arabic sentences to be used in"
" applications that don't support Arabic"),
version=__version__,
platforms="ALL",
license="MIT",
packages=['arabic_reshaper'],
install_requires=['configparser; python_version <"3"',
'future',
'setuptools'],
author="Abdullah Diab",
author_email="mpcabd@gmail.com",
maintainer="Abdullah Diab",
maintainer_email="mpcabd@gmail.com",
package_dir={'arabic_reshaper': 'arabic_reshaper'},
package_data={'arabic_reshaper': ['default-config.ini']},
test_suite='arabic_reshaper.tests',
include_package_data=True,
keywords="arabic shaping reshaping reshaper",
url="https://mpcabd.xyz/python-arabic-text-reshaper/",
download_url=("https://github.com/mpcabd/"
"python-arabic-reshaper/tarball/master"),
classifiers=[
"Natural Language :: Arabic",
"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",
],
)