-
-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathsetup.py
33 lines (31 loc) · 1.03 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
#!/usr/bin/python
from setuptools import setup
# to install type:
# python setup.py install --root=/
def readme():
with open('README.rst', encoding="utf8") as f:
return f.read()
setup (name='Tashaphyne', version='0.3.6',
description='Tashaphyne Arabic Light Stemmer',
long_description = readme(),
author='Taha Zerrouki',
author_email='[email protected]',
url='http://github.com/linuxscout/tashaphyne/',
license='GPL',
package_dir={'tashaphyne': 'tashaphyne',},
packages=['tashaphyne'],
include_package_data=True,
install_requires=[ 'pyarabic',
],
package_data = {
'tashaphyne': ['doc/*.*','doc/html/*'],
},
classifiers=[
'Development Status :: 5 - Production/Stable',
'Natural Language :: Arabic',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Text Processing :: Linguistic',
],
);