forked from roshan-research/hazm
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
executable file
·31 lines (28 loc) · 1005 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
import codecs
from os import path
from setuptools import setup
setup(
name='hazm',
version='0.7.1',
description='Python library for digesting Persian text.',
author='Alireza Nourian',
author_email='[email protected]',
url='http://www.sobhe.ir/hazm/',
long_description=codecs.open(path.join(path.abspath(path.dirname(__file__)), 'README.md'), encoding='utf-8').read(),
long_description_content_type='text/markdown',
packages=['hazm'],
package_data={'hazm': ['data/*.dat']},
classifiers=[
'Topic :: Text Processing',
'Natural Language :: Persian',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'License :: OSI Approved :: MIT License',
],
install_requires=['nltk==3.4', 'libwapiti>=0.2.1;platform_system!="Windows"'],
extras_require={'wapiti': ['libwapiti>=0.2.1']},
)