From 8e09d35197f524c61c25eac6ef4c8f0bf8b45468 Mon Sep 17 00:00:00 2001 From: Robin Linacre Date: Thu, 21 Dec 2017 12:51:19 +0000 Subject: [PATCH] update version for pypi --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 148a580..0fbff26 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ # see https://stackoverflow.com/questions/14399534/reference-requirements-txt-for-the-install-requires-kwarg-in-setuptools-setup-py setup(name='fuzzymatcher', - version='0.0.2', + version='0.0.3', description='Fuzzy match two pandas dataframes based on one or more common fields', url='https://github.com/RobinL/fuzzymatcher', author='Robin Linacre', @@ -12,5 +12,5 @@ install_requires=['pandas', 'metaphone', 'python-Levenshtein', 'fuzzywuzzy', 'python-dateutil'], test_requires=["pylint", "coverage", "codecov"], keywords=["matching", "fuzzy", "probabalistic", "recordlinking", "fuzzymatching"], - download_url = 'https://github.com/RobinL/fuzzymatcher/archive/v0.0.2.tar.gz', + download_url = 'https://github.com/RobinL/fuzzymatcher/archive/v0.0.3.tar.gz', zip_safe=False)