-
-
Notifications
You must be signed in to change notification settings - Fork 85
/
setup.py
37 lines (35 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
36
#! /usr/bin/python
from setuptools import setup
from io import open
# to install type:
# python setup.py install --root=/
def readme():
with open('README.md', encoding="utf8") as f:
return f.read()
setup (name='PyArabic', version='0.6.16',
author='Taha Zerrouki',
author_email='[email protected]',
url='http://pyarabic.sourceforge.net/',
license='GPL',
description="Arabic text tools for Python",
long_description = readme(),
long_description_content_type='text/markdown',
package_dir={'pyarabic': 'pyarabic',},
packages=['pyarabic'],
package_data = {
'pyarabic': ['doc/*.*','doc/html/*'],
},
install_requires=[
'six>=1.14.0',
],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Natural Language :: Arabic',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Text Processing :: Linguistic',
],
);