-
Notifications
You must be signed in to change notification settings - Fork 76
/
setup.py
31 lines (28 loc) · 1.04 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
from setuptools import setup
import pathlib
# The directory containing this file
HERE = pathlib.Path(__file__).parent
# The text of the README file
README = (HERE / "README.md").read_text()
setup(
name='string_grouper',
version='0.6.1',
packages=['string_grouper', 'string_grouper_utils'],
license='MIT License',
description='String grouper contains functions to do string matching using TF-IDF and the cossine similarity. '
'Based on https://bergvca.github.io/2017/10/14/super-fast-string-matching.html',
author='Chris van den Berg',
long_description=README,
long_description_content_type="text/markdown",
author_email='[email protected]',
url='https://github.com/Bergvca/string_grouper',
zip_safe=False,
python_requires='>3.7',
install_requires=['pandas>=0.25.3'
, 'scipy'
, 'scikit-learn'
, 'numpy'
, 'sparse_dot_topn_for_blocks>=0.3.1'
, 'topn>=0.0.7'
]
)