-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
31 lines (28 loc) · 950 Bytes
/
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
from os import path
from setuptools import setup
def readme():
with open('README.md', encoding="utf-8") as f:
return f.read()
setup(
name='arabic_pronounce',
version="0.2.5",
description='Pronounce Arabic words on the fly',
long_description=readme(),
long_description_content_type='text/markdown',
author='Youssef Sherif',
author_email='[email protected]',
url='https://github.com/youssefsharief/arabic_pronounce.git',
include_package_data=True,
zip_safe=False,
license='GPL-3.0',
packages=['arabic_pronounce'],
classifiers=(
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Natural Language :: English',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7'
)
)