-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
53 lines (51 loc) · 1.93 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
51
52
53
import setuptools
with open("README.md", mode="r") as fd:
long_description = fd.read()
setuptools.setup(
name="spellwise",
version="0.8.1",
author="Chaitanya Chinni",
description="🚀 Extremely fast spelling checker and suggester in Python!",
license="MIT License",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/chinnichaitanya/spellwise",
packages=setuptools.find_packages(),
install_requires=["typing;python_version<'3.5'"],
classifiers=[
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Intended Audience :: Healthcare Industry",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.0",
"Programming Language :: Python :: 3.1",
"Programming Language :: Python :: 3.2",
"Programming Language :: Python :: 3.3",
"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",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: Implementation",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries :: Python Modules",
],
python_requires=">=3",
keywords=[
"natural language processing",
"nlp",
"spelling correction",
"edit-distance",
"levenshtein distance",
"editex",
"caverphone",
"typox",
],
)