blob: 09d5e04f3365fc47f295a239fab6fc8fb588c6ca [file] [log] [blame]
Christian Egli68d43e12015-05-07 12:01:44 +02001# Liblouis Python ctypes bindings
2#
Christian Eglif6ec6a52016-06-20 10:33:37 +02003# Copyright (C) 2009 Eitan Isaacson <eitan@ascender.com>
4# Copyright (C) 2010 James Teh <jamie@jantrid.net>
Christian Egli68d43e12015-05-07 12:01:44 +02005#
Christian Eglif6ec6a52016-06-20 10:33:37 +02006# This file is part of liblouis.
7#
8# liblouis is free software: you can redistribute it and/or modify it
9# under the terms of the GNU Lesser General Public License as published
10# by the Free Software Foundation, either version 2.1 of the License, or
11# (at your option) any later version.
12#
13# liblouis is distributed in the hope that it will be useful, but
14# WITHOUT ANY WARRANTY; without even the implied warranty of
15# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16# Lesser General Public License for more details.
17#
18# You should have received a copy of the GNU Lesser General Public
19# License along with liblouis. If not, see <http://www.gnu.org/licenses/>.
20#
Christian Egli68d43e12015-05-07 12:01:44 +020021
Eitan Isaacson72141452009-01-15 15:57:48 +000022r"""Python bindings for liblouis
Eitan Isaacson72141452009-01-15 15:57:48 +000023"""
James Tehde232992009-01-16 11:06:55 +000024
James Teh2ec7cab2010-07-21 01:51:51 +000025from distutils.core import setup
Eitan Isaacson72141452009-01-15 15:57:48 +000026
27classifiers = [
28 'Development Status :: 4 - Beta',
29 'Intended Audience :: Developers',
30 'License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)',
31 'Programming Language :: Python',
32 'Topic :: Text Processing :: Linguistic',
33 ]
34
35setup(name="louis",
James Tehde232992009-01-16 11:06:55 +000036 description=__doc__,
Christian Egli40747a82017-04-25 12:19:50 +020037 download_url = "https://github.com/liblouis/liblouis",
38 license="LGPLv2.1+",
Eitan Isaacson72141452009-01-15 15:57:48 +000039 classifiers=classifiers,
Christopher Brannona4539ce2017-04-24 18:03:29 -070040 version='@VERSION@',
Eitan Isaacson72141452009-01-15 15:57:48 +000041 packages=["louis"])