blob: 86828aa5f4e44eb772b06f5e9a0f3fb7b82290c3 [file] [log] [blame]
Eitan Isaacson72141452009-01-15 15:57:48 +00001r"""Python bindings for liblouis
Eitan Isaacson72141452009-01-15 15:57:48 +00002"""
James Tehde232992009-01-16 11:06:55 +00003
Eitan Isaacson72141452009-01-15 15:57:48 +00004import sys, os
5from distutils.core import setup, Command, DistutilsOptionError
6import louis
7
8classifiers = [
9 'Development Status :: 4 - Beta',
10 'Intended Audience :: Developers',
11 'License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)',
12 'Programming Language :: Python',
13 'Topic :: Text Processing :: Linguistic',
14 ]
15
16setup(name="louis",
James Tehde232992009-01-16 11:06:55 +000017 description=__doc__,
Eitan Isaacson72141452009-01-15 15:57:48 +000018 download_url = "http://code.google.com/p/liblouis/",
19 license="LGPLv2.2",
20 classifiers=classifiers,
21 version=louis.version().split(',')[0].split('-',1)[-1],
22 packages=["louis"])