Skip to content

Commit 1037bd1

Browse files
committed
Some changes to setup.py
1 parent a10a591 commit 1037bd1

File tree

1 file changed

+24
-27
lines changed

1 file changed

+24
-27
lines changed

setup.py

Lines changed: 24 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,29 @@
1-
#!/usr/bin/env python2
1+
#!/usr/bin/env python
22
# coding = utf-8
33

4-
54
from setuptools import setup
65

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-
],
6+
setup(
7+
name = "arabic_reshaper",
8+
description = "Reconstruct Arabic sentences to be used in applications that don't support Arabic",
9+
version = 1.0,
10+
platforms = "ALL",
11+
license = "GPL",
12+
packages = ['arabic_reshaper'],
13+
install_requires = [],
14+
author = "Abdullah Diab",
15+
author_email = "[email protected]",
16+
maintainer = "Abdullah Diab",
17+
maintainer_email = "[email protected]",
18+
package_dir = { 'arabic_reshaper' : '.' },
19+
keywords = "arabic shaping reshaping reshaper",
20+
url = "https://mpcabd.xyz/python-arabic-text-reshaper/",
21+
download_url = "https://github.com/mpcabd/python-arabic-reshaper/tarball/master",
22+
classifiers = [
23+
"Natural Language :: Arabic",
24+
"Operating System :: OS Independent",
25+
"Programming Language :: Python :: 2.7",
26+
"Programming Language :: Python :: 3.5",
27+
"Topic :: Software Development :: Libraries :: Python Modules",
28+
],
3229
)

0 commit comments

Comments
 (0)