Eitan Isaacson | 7214145 | 2009-01-15 15:57:48 +0000 | [diff] [blame] | 1 | r"""Python bindings for liblouis |
Eitan Isaacson | 7214145 | 2009-01-15 15:57:48 +0000 | [diff] [blame] | 2 | """ |
James Teh | de23299 | 2009-01-16 11:06:55 +0000 | [diff] [blame^] | 3 | |
Eitan Isaacson | 7214145 | 2009-01-15 15:57:48 +0000 | [diff] [blame] | 4 | import sys, os |
| 5 | from distutils.core import setup, Command, DistutilsOptionError |
| 6 | import louis |
| 7 | |
| 8 | classifiers = [ |
| 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 | |
| 16 | setup(name="louis", |
James Teh | de23299 | 2009-01-16 11:06:55 +0000 | [diff] [blame^] | 17 | description=__doc__, |
Eitan Isaacson | 7214145 | 2009-01-15 15:57:48 +0000 | [diff] [blame] | 18 | 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"]) |