forked from mpcabd/python-arabic-reshaper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·50 lines (46 loc) · 1.7 KB
/
setup.py
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
48
49
50
#!/usr/bin/env python
# coding=utf-8
from setuptools import setup
import io
import os
with io.open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name="arabic_reshaper",
description=("Reconstruct Arabic sentences to be used in"
" applications that don't support Arabic"),
long_description=long_description,
long_description_content_type="text/markdown",
version='2.1.4',
platforms="ALL",
license="MIT",
packages=['arabic_reshaper'],
install_requires=['configparser; python_version <"3"',
'future'],
extras_require={
'with-fonttools': ['fonttools>=4.0; python_version >="3"',
'fonttools>=3.0,<4.0; python_version <"3"']
},
author="Abdullah Diab",
author_email="mpcabd@gmail.com",
maintainer="Abdullah Diab",
maintainer_email="mpcabd@gmail.com",
package_dir={'arabic_reshaper': 'arabic_reshaper'},
test_suite='arabic_reshaper.tests',
include_package_data=True,
keywords="arabic shaping reshaping reshaper",
url="https://github.com/mpcabd/python-arabic-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.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)