-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
40 lines (37 loc) · 1.38 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
"""A setuptools based setup module."""
from os.path import dirname, abspath, join
from setuptools import setup, find_packages
here = abspath(dirname(__file__))
with open(join(here, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='num2fawords',
version='2.0.dev0',
description='A library to convert numbers (ints, floats, and other '
'standard numerical types) into Persian words.',
long_description=long_description,
url='https://github.com/5j9/num2fawords',
author='5j9',
author_email='[email protected]',
license='GNU General Public License v3.0',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: '
'GNU General Public License v3 or later (GPLv3+)',
'Natural Language :: English',
'Natural Language :: Persian',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Text Processing :: General',
],
keywords='convert number words farsi persian',
packages=find_packages(),
install_requires=[
'typing;python_version<"3.5"',
],
zip_safe=True,
)