-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
34 lines (31 loc) · 1.15 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
import platform
from setuptools import setup, find_packages
if platform.system() == "Windows":
data_files=[(".", ["win-x64-data/libhunspell.dll"]),]
else:
data_files=[]
setup(
name="Hunspell-CFFI",
version="1.1.2",
description="A CFFI binding for the Hunspell spellcheck library",
url="https://github.com/Sentynel/hunspell-cffi",
author="Sam Lade",
author_email="[email protected]",
license="MIT",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
],
keywords="spelling,spellcheck",
packages=["hunspell_cffi"],
setup_requires=["cffi>=1.0.0",],
cffi_modules=["hunspell_cffi/build.py:ffi"],
install_requires=["cffi>=1.0.0",],
data_files=data_files,
)