-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
50 lines (48 loc) · 1.69 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
48
49
50
"""Setup for OpenTaal Histogram.
Python package by OpenTaal for efficiently processing Dutch texts.
"""
from setuptools import setup
setup(
name='OpenTaal',
version='0.1.1',
url='https://github.com/opentaal/opentaal-python',
project_urls={
'Documentation': 'https://bootstrap-flask.readthedocs.io/en/stable/',
'Funding': 'https://liberapay.com/opentaal',
'Source Code': 'https://github.com/opentaal/opentaal-python/',
'Issue Tracker': 'https://github.com/opentaal/opentaal-python/issues/',
},
license='MIT',
author='OpenTaal',
author_email='info@opentaal.org',
description='Python package for efficiently processing Dutch texts.',
long_description=__doc__,
long_description_content_type='text/markdown',
platforms='any',
packages=['opentaal'],
zip_safe=False,
include_package_data=True,
test_suite='tests',
install_requires=[
'hunspell',
'gtts',
'python-ucto',
'py-gnuplot',
],
keywords='Dutch histogram spelling Unicode sort',
classifiers=[
'Development Status :: 4 - Beta',
'Natural Language :: Dutch',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Topic :: Text Processing :: Linguistic',
'Topic :: Software Development :: Libraries :: Python Modules',
]
)