-
-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathsetup_lib.py
30 lines (30 loc) · 983 Bytes
/
setup_lib.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
#! /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='libqutrub', version='1.2.5',
description='libqutrub Arabic verb conjuagtion library',
long_description = readme(),
author='Taha Zerrouki',
author_email='taha.zerrouki@gmail.com',
url='http://libqutrub.sourceforge.net/',
license='GPL',
platform="OS independent",
package_dir={'libqutrub': 'libqutrub',},
packages=['libqutrub'],
install_requires=[ 'pyarabic>=0.6.2',
],
include_package_data=True,
package_data = {
'libqutrub': ['doc/*.*','doc/html/*'],
},
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: End Users/Desktop',
'Programming Language :: Python',
],
);