# -*- coding: utf-8 -*-
from setuptools import setup, Extension

# For shadow builds: references to the source tree
import os
srcdir = '@srcdir@'

setup (name = 'recoll-aspell-python-py3',
    version = '1.15',
    ext_modules = [Extension('recollaspell',
                             [os.path.join(srcdir, "aspell.c")],
                             libraries = ["aspell"],
                             )],
    description      = "Wrapper around GNU Aspell for Python 3",
    author           = "Wojciech Muła",
    author_email     = "wojciech_mula@poczta.onet.pl",
    maintainer       = "Wojciech Muła",
    maintainer_email = "wojciech_mula@poczta.onet.pl",
    url              = "http://github.com/WojciechMula/aspell-python",
    platforms        = ["Linux", "Windows"],
    license          = "BSD (3 clauses)",
    long_description = "aspell-python - C extension for Python 3",
    classifiers      = [
        "Development Status :: 5 - Production/Stable",
        "License :: OSI Approved :: BSD License",
        "Programming Language :: C",
        "Topic :: Software Development :: Libraries",
        "Topic :: Text Editors :: Text Processing",
    ],
)
