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
|
# -*- 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",
],
)
|