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 132 133 134 135 136 137 138 139 140 141 142
|
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
def install_and_import(package):
import importlib
try:
importlib.import_module(package)
except ImportError:
if not PIP_INSTALLED:
raise ImportError('pip is not installed.')
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_stringmatching'],
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()
# specify extensions that need to be compiled
extensions = [setuptools.Extension("py_stringmatching.similarity_measure.cython.cython_levenshtein",
["py_stringmatching/similarity_measure/cython/cython_levenshtein.c"],
include_dirs=[]),
setuptools.Extension("py_stringmatching.similarity_measure.cython.cython_jaro",
["py_stringmatching/similarity_measure/cython/cython_jaro.c"],
include_dirs=[]),
setuptools.Extension("py_stringmatching.similarity_measure.cython.cython_jaro_winkler",
["py_stringmatching/similarity_measure/cython/cython_jaro_winkler.c"],
include_dirs=[]),
setuptools.Extension("py_stringmatching.similarity_measure.cython.cython_utils",
["py_stringmatching/similarity_measure/cython/cython_utils.c"],
include_dirs=[]),
setuptools.Extension("py_stringmatching.similarity_measure.cython.cython_needleman_wunsch",
["py_stringmatching/similarity_measure/cython/cython_needleman_wunsch.c"],
include_dirs=[]),
setuptools.Extension("py_stringmatching.similarity_measure.cython.cython_smith_waterman",
["py_stringmatching/similarity_measure/cython/cython_smith_waterman.c"],
include_dirs=[]),
setuptools.Extension("py_stringmatching.similarity_measure.cython.cython_affine",
["py_stringmatching/similarity_measure/cython/cython_affine.c"],
include_dirs=[])
]
# find packages to be included. exclude benchmarks.
packages = setuptools.find_packages(exclude=["benchmarks", "benchmarks.custom_benchmarks"])
with open('README.rst') as f:
LONG_DESCRIPTION = f.read()
setuptools.setup(
name='py_stringmatching',
version='0.4.3',
description='Python library for string matching.',
long_description=LONG_DESCRIPTION,
url='https://sites.google.com/site/anhaidgroup/projects/magellan/py_stringmatching',
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.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Topic :: Scientific/Engineering',
'Topic :: Utilities',
'Topic :: Software Development :: Libraries',
],
packages=packages,
install_requires=[
'numpy >= 1.7.0',
'six'
],
setup_requires=[
'numpy >= 1.7.0'
],
ext_modules=extensions,
cmdclass=cmdclass,
include_package_data=True,
zip_safe=False
)
|