Skip to content

Commit

Permalink
Merge pull request #1 from IsaacHaze/master
Browse files Browse the repository at this point in the history
fixes import _levensthein error
  • Loading branch information
larsmans committed Nov 20, 2013
2 parents 75fc0e0 + 72b9d2b commit 62c6182
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 2 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# Editor temporaries
*.sw[op]
*~

*.py[cod]

Expand Down
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from distutils.core import setup, Extension
from setuptools import setup, Extension

setup(
name='leven',
Expand All @@ -8,9 +8,10 @@
maintainer_email='[email protected]',
packages=['leven'],
ext_modules=[
Extension("leven._levensthein", ["leven/_levenshtein.cpp"],
Extension("leven._levenshtein", ["leven/_levenshtein.cpp"],
include_dirs=["leven"])
],
install_requires=["six", "nose"],
url='https://github.com/semanticize/leven',
test_suite='nose.collector'
)
1 change: 1 addition & 0 deletions tests/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# feeling zen?
File renamed without changes.

0 comments on commit 62c6182

Please sign in to comment.