forked from anhaidgroup/py_entitymatching
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
131 lines (115 loc) · 4.85 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
import subprocess
import sys
import os
# check if pip is installed. If not, raise an ImportError
PIP_INSTALLED = True
try:
import pip
except ImportError:
PIP_INSTALLED = False
if not PIP_INSTALLED:
raise ImportError('pip is not installed.')
def install_and_import(package):
import importlib
try:
importlib.import_module(package)
except ImportError:
pip.main(['install', package])
finally:
globals()[package] = importlib.import_module(package)
# check if setuptools is installed. If not, install setuptools
# automatically using pip.
install_and_import('setuptools')
from setuptools.command.build_ext import build_ext as _build_ext
class build_ext(_build_ext):
def build_extensions(self):
import pkg_resources
numpy_incl = pkg_resources.resource_filename('numpy', 'core/include')
for ext in self.extensions:
if (hasattr(ext, 'include_dirs') and
not numpy_incl in ext.include_dirs):
ext.include_dirs.append(numpy_incl)
_build_ext.build_extensions(self)
def generate_cython():
cwd = os.path.abspath(os.path.dirname(__file__))
print("Cythonizing sources")
p = subprocess.call([sys.executable, os.path.join(cwd,
'build_tools',
'cythonize.py'),
'py_entitymatching'],
cwd=cwd)
if p != 0:
raise RuntimeError("Running cythonize failed!")
cmdclass = {"build_ext": build_ext}
if __name__ == "__main__":
no_frills = (len(sys.argv) >= 2 and ('--help' in sys.argv[1:] or
sys.argv[1] in ('--help-commands',
'egg_info', '--version',
'clean')))
cwd = os.path.abspath(os.path.dirname(__file__))
if not os.path.exists(os.path.join(cwd, 'PKG-INFO')) and not no_frills:
# Generate Cython sources, unless building from source release
generate_cython()
# find packages to be included.
packages = setuptools.find_packages()
with open('README.rst') as f:
LONG_DESCRIPTION = f.read()
extensions = [setuptools.Extension("py_entitymatching.debugblocker.debugblocker_cython",
["py_entitymatching/debugblocker/debugblocker_cython.pyx",
"py_entitymatching/debugblocker/TopPair.cpp",
"py_entitymatching/debugblocker/PrefixEvent.cpp",
"py_entitymatching/debugblocker/GenerateRecomLists.cpp",
"py_entitymatching/debugblocker/TopkHeader.cpp",
"py_entitymatching/debugblocker/OriginalTopkPlain.cpp",
], language='c++',
include_dirs=[])
]
setuptools.setup(
name='py_entitymatching',
version='0.4.0',
description='Python library for end to end Entity Matching.',
long_description=LONG_DESCRIPTION,
url='https://sites.google.com/site/anhaidgroup/projects/magellan/py_entitymatching',
author='UW Magellan Team',
author_email='uwmagellan@gmail.com',
license='BSD',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Intended Audience :: Education',
'License :: OSI Approved :: BSD License',
'Operating System :: POSIX',
'Operating System :: Unix',
'Operating System :: MacOS',
'Operating System :: Microsoft :: Windows',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Topic :: Scientific/Engineering',
'Topic :: Utilities',
'Topic :: Software Development :: Libraries',
],
packages=packages,
install_requires=[
'requests',
'ipython>=5.6',
'matplotlib>=2.2.4',
'PyPrind',
'py-stringsimjoin>=0.3.0',
# dependencies such as py_stringmatching, joblib, pyprind
'cloudpickle >= 0.2.1',
'pyparsing >= 2.1.4',
'scikit-learn >= 0.22',
'scipy',
'numpy'
],
ext_modules=extensions,
cmdclass=cmdclass,
include_package_data=True,
zip_safe=False
)