Code Search for Developers
 
 
  

setup.py from TextIndexNG at Krugle


Show setup.py syntax highlighted

from distutils.core import setup, Extension

extLevensthein = Extension('Levenshtein',
                           sources = ['Levenshtein.c'],
                           )

setup(name = 'python-Levenshtein',
      version = '0.10',
      description = 'Python extension computing string distances and similarities.',
      author = 'David Necas (Yeti)',
      author_email = 'yeti@physics.muni.cz',
      license = 'GNU GPL',
      url = 'http://trific.ath.cx/python/levenshtein/',
      long_description = '''
Levenshtein computes Levenshtein distances, similarity ratios, generalized
medians and set medians of Strings and Unicodes.  Becuase it's implemented
in C, it's much faster than corresponding Python library functions and
methods.
''',
      ext_modules = [extLevensthein])





See more files for this project here

TextIndexNG

The next generation fulltext index for the Zope Catalog\r\n\r\nFor details see http://www.zope.org/Members/ajung/TextIndexNG/wiki/TextIndexNG\r\n\r\n

Project homepage: http://sourceforge.net/projects/textindexng
Programming language(s): C,Python
License: other

  COPYING
  Levenshtein.c
  Levenshtein.h
  MANIFEST
  NEWS
  PKG-INFO
  README
  StringMatcher.py
  StringMatcher.pyc
  gendoc.sh
  setup.cfg
  setup.py
  setup.pyc