blob: e9de7c51232b20b49428ce7744a5a1a06d374f07 [file] [log] [blame]
#!/usr/bin/env python
from setuptools import setup, Extension
long_description = open('README.rst').read()
setup(name="jellyfish",
version="0.2.0",
platforms=["any"],
description=("a library for doing approximate and "
"phonetic matching of strings."),
url="http://github.com/sunlightlabs/jellyfish",
long_description=long_description,
classifiers=["Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Text Processing :: Linguistic"],
ext_modules=[Extension("jellyfish", ['jellyfishmodule.c', 'jaro.c',
'hamming.c', 'levenshtein.c',
'damerau_levenshtein.c', 'mra.c',
'soundex.c', 'metaphone.c',
'nysiis.c', 'porter.c'])])