-
Notifications
You must be signed in to change notification settings - Fork 98
/
setup.py
33 lines (32 loc) · 1.19 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
from distutils.core import setup
setup(
name="autocorrect",
version="2.6.1",
python_requires=">=3.6",
packages=["autocorrect"],
package_data={"autocorrect": ["data/en.tar.gz"]},
description="Spelling Corrector",
author="Jonas McCallum, Filip Sondej",
author_email="[email protected]",
url="https://github.com/fsondej/autocorrect",
license="https://opensource.org/licenses/LGPL-3.0",
classifiers=(
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Natural Language :: English",
"Natural Language :: Polish",
"Natural Language :: Russian",
"Natural Language :: Ukrainian",
"Natural Language :: Turkish",
"Natural Language :: Spanish",
"Natural Language :: Czech",
"Natural Language :: Portuguese",
"Natural Language :: Greek",
"Natural Language :: Italian",
"Natural Language :: French",
"Natural Language :: Vietnamese",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
),
keywords="autocorrect spelling corrector nlp multilanguage spellcheck",
)