forked from linuxscout/alyahmor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (34 loc) · 1.16 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
#! /usr/bin/python
from setuptools import setup
from io import open
# to install type:
# python setup.py install --root=/
def readme():
with open('README.rst', encoding="utf8") as f:
return f.read()
setup (name='alyahmor', version='0.1.5',
description='Alyahmor Arabic Morphological Genrator for Python',
long_description = readme(),
author='Taha Zerrouki',
author_email='taha. zerrouki@gmail .com',
url='http://github.com/linuxscout/alyahmor/',
license='GPL',
package_dir={'alyahmor': 'alyahmor',},
packages=['alyahmor'],
include_package_data=True,
install_requires=[ 'libqutrub>=1.0',
'pyarabic>=0.6.2',
"arramooz-pysqlite>=0.1",
],
package_data = {
'alyahmor': ['doc/*.*', 'data/*.*'],
},
classifiers=[
'Development Status :: 5 - Production/Stable',
'Natural Language :: Arabic',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Text Processing :: Linguistic',
],
);