-
Notifications
You must be signed in to change notification settings - Fork 21
/
setup.py
33 lines (27 loc) · 976 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
32
33
import setuptools
with open("README.rst", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="spylls",
version="0.1.7",
author="Victor Shepelev",
author_email="[email protected]",
description="Hunspell ported to pure Python",
long_description=long_description,
url="https://github.com/zverok/spylls",
packages=setuptools.find_packages(),
include_package_data=True,
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Operating System :: OS Independent",
"Topic :: Text Processing :: Linguistic"
],
python_requires='>=3.7',
keywords=["hunspell", "spelling", "spellcheck", "suggest"]
)