File tree Expand file tree Collapse file tree 2 files changed +32
-0
lines changed
Expand file tree Collapse file tree 2 files changed +32
-0
lines changed Original file line number Diff line number Diff line change 1+ #!/usr/bin/env python2
2+ # coding = utf-8
3+
4+
5+ from setuptools import setup
6+
7+ setup (
8+ name = "arabic_reshaper" ,
9+ description = "Reconstruct Arabic sentences to be used in applications that don't support Arabic" ,
10+ version = 1.0 ,
11+ platforms = "ALL" ,
12+ license = "AGPL" ,
13+ packages = ['arabic_reshaper' ],
14+ install_requires = [],
15+
16+ author = "Abd Allah Diab" ,
17+ author_email = "mpcabd ^at^ gmail ^dot^ com" ,
18+ maintainer = "Abd Allah Diab" ,
19+ maintainer_email = "mpcabd ^at^ gmail ^dot^ com" ,
20+
21+ package_dir = {'arabic_reshaper' :'.' },
22+ keywords = "arabic shaping" ,
23+ url = "http://mpcabd.xyz/python-arabic-text-reshaper/" ,
24+ download_url = "https://github.com/mpcabd/python-arabic-reshaper/tarball/master" ,
25+
26+ classifiers = [
27+ "Natural Language :: Arabic" ,
28+ "Operating System :: OS Independent" ,
29+ "Programming Language :: Python :: 2.7" ,
30+ "Topic :: Software Development :: Libraries :: Python Modules" ,
31+ ],
32+ )
You can’t perform that action at this time.
0 commit comments