Skip to content

Commit 5ed15d6

Browse files
committed
Merge pull request #4 from assem-ch/master
Create the `setup.py` file
2 parents d859318 + 2ee6793 commit 5ed15d6

File tree

2 files changed

+32
-0
lines changed

2 files changed

+32
-0
lines changed

__init__.py

Whitespace-only changes.

setup.py

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
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+
)

0 commit comments

Comments
 (0)