blob: dbe6f9b52128670050d91d08df81317b6fee8275 [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
James Teh2ec7cab2010-07-21 01:51:51 +00004from distutils.core import setup
Eitan Isaacson72141452009-01-15 15:57:48 +00005import louis
6
7classifiers = [
8 'Development Status :: 4 - Beta',
9 'Intended Audience :: Developers',
10 'License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)',
11 'Programming Language :: Python',
12 'Topic :: Text Processing :: Linguistic',
13 ]
14
15setup(name="louis",
James Tehde232992009-01-16 11:06:55 +000016 description=__doc__,
Eitan Isaacson72141452009-01-15 15:57:48 +000017 download_url = "http://code.google.com/p/liblouis/",
18 license="LGPLv2.2",
19 classifiers=classifiers,
20 version=louis.version().split(',')[0].split('-',1)[-1],
21 packages=["louis"])