forked from linuxscout/pyarabic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
29 lines (26 loc) · 896 Bytes
/
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
#! /usr/bin/python2
from distutils.core import setup
from glob import glob
# to install type:
# python2 setup.py install --root=/
setup (name='PyArabic', version='0.4',
description='pyarabic Arabic text tools for Python',
author='Taha Zerrouki',
author_email='taha_zerrouki@gawab.com',
url='http://pyarabic.sourceforge.net/',
license='GPL',
#Description="Arabic Arabic text tools for Python",
#Platform="OS independent",
package_dir={'pyarabic': 'pyarabic',},
packages=['pyarabic'],
# include_package_data=True,
package_data = {
'pyarabic': ['doc/*.*','doc/html/*'],
},
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: End Users/Desktop',
'Operating System :: OS Independent',
'Programming Language :: Python',
],
);