Christian Egli | 68d43e1 | 2015-05-07 12:01:44 +0200 | [diff] [blame] | 1 | # Liblouis Python ctypes bindings |
| 2 | # |
Christian Egli | f6ec6a5 | 2016-06-20 10:33:37 +0200 | [diff] [blame] | 3 | # Copyright (C) 2009 Eitan Isaacson <eitan@ascender.com> |
| 4 | # Copyright (C) 2010 James Teh <jamie@jantrid.net> |
Christian Egli | 68d43e1 | 2015-05-07 12:01:44 +0200 | [diff] [blame] | 5 | # |
Christian Egli | f6ec6a5 | 2016-06-20 10:33:37 +0200 | [diff] [blame] | 6 | # 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 Egli | 68d43e1 | 2015-05-07 12:01:44 +0200 | [diff] [blame] | 21 | |
Eitan Isaacson | 7214145 | 2009-01-15 15:57:48 +0000 | [diff] [blame] | 22 | r"""Python bindings for liblouis |
Eitan Isaacson | 7214145 | 2009-01-15 15:57:48 +0000 | [diff] [blame] | 23 | """ |
James Teh | de23299 | 2009-01-16 11:06:55 +0000 | [diff] [blame] | 24 | |
James Teh | 2ec7cab | 2010-07-21 01:51:51 +0000 | [diff] [blame] | 25 | from distutils.core import setup |
Eitan Isaacson | 7214145 | 2009-01-15 15:57:48 +0000 | [diff] [blame] | 26 | |
| 27 | classifiers = [ |
| 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 | |
| 35 | setup(name="louis", |
James Teh | de23299 | 2009-01-16 11:06:55 +0000 | [diff] [blame] | 36 | description=__doc__, |
Christian Egli | 40747a8 | 2017-04-25 12:19:50 +0200 | [diff] [blame] | 37 | download_url = "https://github.com/liblouis/liblouis", |
| 38 | license="LGPLv2.1+", |
Eitan Isaacson | 7214145 | 2009-01-15 15:57:48 +0000 | [diff] [blame] | 39 | classifiers=classifiers, |
Christopher Brannon | a4539ce | 2017-04-24 18:03:29 -0700 | [diff] [blame] | 40 | version='@VERSION@', |
Eitan Isaacson | 7214145 | 2009-01-15 15:57:48 +0000 | [diff] [blame] | 41 | packages=["louis"]) |