-
Notifications
You must be signed in to change notification settings - Fork 80
/
setup.py
executable file
·47 lines (43 loc) · 1.52 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
37
38
39
40
41
42
43
44
45
46
47
#!/usr/bin/env python
# coding=utf-8
from setuptools import setup
import io
import os
with io.open('README.md', 'r', encoding='utf-8') as fh:
long_description = fh.read()
setup(
name='arabic_reshaper',
description=('Reconstruct Arabic sentences to be used in'
' applications that do not support Arabic'),
long_description=long_description,
long_description_content_type='text/markdown',
version='3.0.0',
platforms='ALL',
license='MIT',
packages=['arabic_reshaper'],
extras_require={
'with-fonttools': ['fonttools>=4.0']
},
author='Abdullah Diab',
author_email='[email protected]',
maintainer='Abdullah Diab',
maintainer_email='[email protected]',
package_dir={'arabic_reshaper': 'arabic_reshaper'},
test_suite='arabic_reshaper.tests',
include_package_data=True,
keywords='arabic shaping reshaping reshaper',
url='https://github.com/mpcabd/python-arabic-reshaper/',
download_url=('https://github.com/mpcabd/'
'python-arabic-reshaper/tarball/master'),
classifiers=[
'Natural Language :: Arabic',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)