~mshinke/nvdajp/MiscellaneousDependencies

« back to all changes in this revision

Viewing changes to include/liblouis/python/setup.py

  • Committer: Masataka Shinke
  • Date: 2012-01-12 20:01:32 UTC
  • mfrom: (26.1.42 miscdep)
  • Revision ID: mshinke@users.sourceforge.jp-20120112200132-fvksmjulcjdzu5mk
mergedĀ lp:~nishimotz/nvdajp/MiscellaneousDependenciesĀ 68

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
r"""Python bindings for liblouis
 
2
"""
 
3
 
 
4
from distutils.core import setup
 
5
import louis
 
6
 
 
7
classifiers = [
 
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
 
 
15
setup(name="louis",
 
16
      description=__doc__,
 
17
      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"])