-
Notifications
You must be signed in to change notification settings - Fork 59
/
Copy pathsetup.py
16 lines (15 loc) · 886 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
from setuptools import setup
# see https://stackoverflow.com/questions/14399534/reference-requirements-txt-for-the-install-requires-kwarg-in-setuptools-setup-py
setup(name='fuzzymatcher',
version='0.0.6',
description='Fuzzy match two pandas dataframes based on one or more common fields',
url='https://github.com/RobinL/fuzzymatcher',
author='Robin Linacre',
author_email='robinlinacre@hotmail.com',
license='MIT',
packages=['fuzzymatcher'], # The directory to look in for the source code
install_requires=['pandas', 'metaphone', 'python-Levenshtein', 'rapidfuzz', 'python-dateutil'],
test_requires=["pylint", "coverage", "codecov"],
keywords=["matching", "fuzzy", "probabalistic", "recordlinking", "fuzzymatching"],
download_url = 'https://github.com/RobinL/fuzzymatcher/archive/v0.0.6.tar.gz',
zip_safe=False)