forked from dedupeio/dedupe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
71 lines (63 loc) · 3.18 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
#!/usr/bin/python
# -*- coding: utf-8 -*-
try:
from setuptools import setup, Extension
except ImportError:
raise ImportError("setuptools module required, please go to https://pypi.python.org/pypi/setuptools and follow the instructions for installing setuptools")
from Cython.Build import cythonize
install_requires = ['fastcluster',
'dedupe-hcluster',
'affinegap>=1.3',
'categorical-distance>=1.9',
'dedupe-variable-datetime',
'rlr>=2.4.3',
'numpy>=1.13',
'doublemetaphone',
'highered>=0.2.0',
'simplecosine>=1.2',
'haversine>=0.4.1',
'BTrees>=4.1.4',
'zope.index',
'Levenshtein_search',
'typing_extensions']
setup(
name='dedupe',
url='https://github.com/dedupeio/dedupe',
version='2.0.6',
author='Forest Gregg',
author_email='[email protected]',
description='A python library for accurate and scaleable data deduplication and entity-resolution',
packages=['dedupe', 'dedupe.variables'],
ext_modules=cythonize([Extension('dedupe.cpredicates', ['dedupe/cpredicates.pyx'])]),
install_requires=install_requires,
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Programming Language :: Cython',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Information Analysis'],
long_description="""
dedupe is a library that uses machine learning to perform de-duplication and entity resolution quickly on structured data. dedupe is the open source engine for `dedupe.io <https://dedupe.io>`_
**dedupe** will help you:
* **remove duplicate entries** from a spreadsheet of names and addresses
* **link a list** with customer information to another with order history, even without unique customer id's
* take a database of campaign contributions and **figure out which ones were made by the same person**, even if the names were entered slightly differently for each record
dedupe takes in human training data and comes up with the best rules for your dataset to quickly and automatically find similar records, even with very large databases.
""", # noqa: E501
project_urls={
"Issues": "https://github.com/dedupeio/dedupe/issues",
"Documentation": "https://docs.dedupe.io/en/latest/",
"Examples": "https://github.com/dedupeio/dedupe-examples",
"Twitter": "https://twitter.com/DedupeIo",
"Changelog": "https://github.com/dedupeio/dedupe/blob/master/CHANGELOG.md",
"Mailing List": "https://groups.google.com/forum/#!forum/open-source-deduplication",
}
)