From a78ce5efed24fe0617571a1f863b34f3a04dfabb Mon Sep 17 00:00:00 2001 From: Yomguithereal Date: Wed, 22 Aug 2018 17:57:15 +0200 Subject: [PATCH] Fixing --- setup.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index efd0f52..3835927 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ with open('./README.md', 'r') as f: long_description = f.read() setup(name='fog', - version='0.5.0', + version='0.5.1', description='A fuzzy matching & clustering library for python.', long_description=long_description, long_description_content_type='text/markdown', @@ -17,8 +17,9 @@ setup(name='fog', python_requires='>=3', packages=find_packages(exclude=['experiments', 'test']), ext_modules=cythonize('fog/metrics/*.pyx'), - package_data={'docs': ['README.md']}, + package_data={'': ['*.pyx'], 'docs': ['README.md']}, install_requires=[ + 'Cython>=0.16', 'dill==0.2.7.1', 'phylactery==0.1.1', 'Unidecode==1.0.22'