setup.py 15.5 KB
Newer Older
1
# No 3rd-party modules here, see "3rd-party" note below
2 3 4 5 6 7 8 9
import io
import os
import os.path
import sys
import runpy
import subprocess
import re
import sysconfig
10

11

12
def main():
O
Olli-Pekka Heinisuo 已提交
13

14
    os.chdir(os.path.dirname(os.path.abspath(__file__)))
15

16 17
    # These are neede for source fetching
    cmake_source_dir = "opencv"
O
Olli-Pekka Heinisuo 已提交
18 19 20
    build_contrib = get_build_env_var_by_name("contrib")
    # headless flag to skip GUI deps if needed
    build_headless = get_build_env_var_by_name("headless")
21

22 23 24
    # Only import 3rd-party modules after having installed all the build dependencies:
    # any of them, or their dependencies, can be updated during that process,
    # leading to version conflicts
25 26 27 28 29 30 31 32
    minimum_supported_numpy = "1.11.1"

    if sys.version_info[:2] >= (3, 6):
        minimum_supported_numpy = "1.11.3"
    if sys.version_info[:2] >= (3, 7):
        minimum_supported_numpy = "1.14.5"

    numpy_version = get_or_install("numpy", minimum_supported_numpy)
33 34
    get_or_install("scikit-build")
    import skbuild
35

36
    if os.path.exists('.git'):
37

O
Olli-Pekka Heinisuo 已提交
38 39
        import pip._internal.vcs.git as git
        g = git.Git()  # NOTE: pip API's are internal, this has to be refactored
40

41 42
        g.run_command(["submodule", "sync"])
        g.run_command(["submodule", "update", "--init", "--recursive", cmake_source_dir])
43

44
        if build_contrib:
45
            g.run_command(["submodule", "update", "--init", "--recursive", "opencv_contrib"])
O
Olli-Pekka Heinisuo 已提交
46

47
    # https://stackoverflow.com/questions/1405913/python-32bit-or-64bit-mode
48
    x64 = sys.maxsize > 2**32
49

O
Olli-Pekka Heinisuo 已提交
50 51
    package_name = "opencv-python"

52
    if build_contrib and not build_headless:
O
Olli-Pekka Heinisuo 已提交
53 54
        package_name = "opencv-contrib-python"

O
Olli-Pekka Heinisuo 已提交
55
    if build_contrib and build_headless:
O
Olli-Pekka Heinisuo 已提交
56 57
        package_name = "opencv-contrib-python-headless"

58
    if build_headless and not build_contrib:
O
Olli-Pekka Heinisuo 已提交
59 60
        package_name = "opencv-python-headless"

61
    long_description = io.open('README.md', encoding="utf-8").read()
62
    package_version = get_opencv_version()
O
Olli-Pekka Heinisuo 已提交
63

64
    packages = ['cv2', 'cv2.data']
65

66 67 68
    package_data = {
        'cv2':
            ['*%s' % sysconfig.get_config_var('SO')] +
69
            (['*.dll'] if os.name == 'nt' else []) +
70
            ["LICENSE.txt", "LICENSE-3RD-PARTY.txt"],
71
        'cv2.data':
72
            ["*.xml"]
73
    }
74 75 76

    # Files from CMake output to copy to package.
    # Path regexes with forward slashes relative to CMake install dir.
77
    rearrange_cmake_output_data = {
78

79
        'cv2': ([r'bin/opencv_ffmpeg\d{3}%s\.dll' % ('_64' if x64 else '')] if os.name == 'nt' else []) +
80 81 82
        # In Windows, in python/X.Y/<arch>/; in Linux, in just python/X.Y/.
        # Naming conventions vary so widely between versions and OSes
        # had to give up on checking them.
O
Olli-Pekka Heinisuo 已提交
83
        ['python/cv2[^/]*%(ext)s' % {'ext': re.escape(sysconfig.get_config_var('SO'))}],
84

85
        'cv2.data': [  # OPENCV_OTHER_INSTALL_PATH
O
Olli-Pekka Heinisuo 已提交
86
            ('etc' if os.name == 'nt' else 'share/OpenCV') +
87 88 89 90
            r'/haarcascades/.*\.xml'
        ]
    }

91 92
    # Files in sourcetree outside package dir that should be copied to package.
    # Raw paths relative to sourcetree root.
93 94 95
    files_outside_package_dir = {
        'cv2': ['LICENSE.txt', 'LICENSE-3RD-PARTY.txt']
    }
96

97
    cmake_args = ([
98 99
        "-G", "Visual Studio 14" + (" Win64" if x64 else '')
    ] if os.name == 'nt' else [
100
        "-G", "Unix Makefiles"  # don't make CMake try (and fail) Ninja first
101
    ]) + [
102 103 104
        # skbuild inserts PYTHON_* vars. That doesn't satisfy opencv build scripts in case of Py3
        "-DPYTHON%d_EXECUTABLE=%s" % (sys.version_info[0], sys.executable),
        "-DBUILD_opencv_python%d=ON" % sys.version_info[0],
O
Olli-Pekka Heinisuo 已提交
105

106
        # When off, adds __init__.py and a few more helper .py's. We use our own helper files with a different structure.
107
        "-DOPENCV_SKIP_PYTHON_LOADER=ON",
108 109 110
        # Relative dir to install the built module to in the build tree.
        # The default is generated from sysconfig, we'd rather have a constant for simplicity
        "-DOPENCV_PYTHON%d_INSTALL_PATH=python" % sys.version_info[0],
111 112 113
        # Otherwise, opencv scripts would want to install `.pyd' right into site-packages,
        # and skbuild bails out on seeing that
        "-DINSTALL_CREATE_DISTRIB=ON",
O
Olli-Pekka Heinisuo 已提交
114

115 116 117 118 119
        # See opencv/CMakeLists.txt for options and defaults
        "-DBUILD_opencv_apps=OFF",
        "-DBUILD_SHARED_LIBS=OFF",
        "-DBUILD_TESTS=OFF",
        "-DBUILD_PERF_TESTS=OFF",
O
Olli-Pekka Heinisuo 已提交
120
        "-DBUILD_DOCS=OFF"
121
    ] + (["-DOPENCV_EXTRA_MODULES_PATH=" + os.path.abspath("opencv_contrib/modules")] if build_contrib else [])
122

123
    # OS-specific components
124
    if (sys.platform == 'darwin' or sys.platform.startswith('linux')) and not build_headless:
125 126
        cmake_args.append("-DWITH_QT=4")

O
Olli-Pekka Heinisuo 已提交
127 128 129 130 131
    if build_headless:
        # it seems that cocoa cannot be disabled so on macOS the package is not truly headless
        cmake_args.append("-DWITH_WIN32UI=OFF")
        cmake_args.append("-DWITH_QT=OFF")

132
    if sys.platform.startswith('linux'):
133
        cmake_args.append("-DWITH_V4L=ON")
134
        cmake_args.append("-DENABLE_PRECOMPILED_HEADERS=OFF")
135

O
Olli-Pekka Heinisuo 已提交
136
    # Fixes for macOS builds
137 138 139
    if sys.platform == 'darwin':
        cmake_args.append("-DWITH_LAPACK=OFF")  # Some OSX LAPACK fns are incompatible, see
                                                # https://github.com/skvark/opencv-python/issues/21
O
Olli-Pekka Heinisuo 已提交
140
        cmake_args.append("-DCMAKE_CXX_FLAGS=-stdlib=libc++")
O
Olli-Pekka Heinisuo 已提交
141
        cmake_args.append("-DCMAKE_OSX_DEPLOYMENT_TARGET:STRING=10.8")
O
Olli-Pekka Heinisuo 已提交
142

O
Olli-Pekka Heinisuo 已提交
143
    if sys.platform == 'darwin' and build_contrib:
O
Olli-Pekka Heinisuo 已提交
144
        cmake_args.append("-DCMAKE_CXX_FLAGS=-stdlib=libc++ -std=c++11 -Wno-c++11-narrowing")
O
Olli-Pekka Heinisuo 已提交
145

146
    if sys.platform.startswith('linux'):
I
Ivan Pozdeev 已提交
147 148 149
        cmake_args.append("-DWITH_IPP=OFF")   # tests fail with IPP compiled with
                                              # devtoolset-2 GCC 4.8.2 or vanilla GCC 4.9.4
                                              # see https://github.com/skvark/opencv-python/issues/138
150 151
    if sys.platform.startswith('linux') and not x64:
        cmake_args.append("-DCMAKE_CXX_FLAGS=-U__STRICT_ANSI__")
152 153
        # patch openEXR when building on i386, see: https://github.com/openexr/openexr/issues/128
        subprocess.check_call(["patch", "-p0", "<", "patches/patchOpenEXR"])
154

O
Olli-Pekka Heinisuo 已提交
155

156 157 158 159
    if 'CMAKE_ARGS' in os.environ:
        import shlex
        cmake_args.extend(shlex.split(os.environ['CMAKE_ARGS']))
        del shlex
O
Olli-Pekka Heinisuo 已提交
160

161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180
    # ABI config variables are introduced in PEP 425
    if sys.version_info[:2] < (3, 2):
        import warnings
        warnings.filterwarnings('ignore', r"Config variable '[^']+' is unset, "
                                          r"Python ABI tag may be incorrect",
                                category=RuntimeWarning)
        del warnings

    # works via side effect
    RearrangeCMakeOutput(rearrange_cmake_output_data,
                         files_outside_package_dir,
                         package_data.keys())

    skbuild.setup(
        name=package_name,
        version=package_version,
        url='https://github.com/skvark/opencv-python',
        license='MIT',
        description='Wrapper package for OpenCV python bindings.',
        long_description=long_description,
181
        long_description_content_type="text/markdown",
182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206
        packages=packages,
        package_data=package_data,
        maintainer="Olli-Pekka Heinisuo",
        include_package_data=True,
        ext_modules=EmptyListWithLength(),
        install_requires="numpy>=%s" % numpy_version,
        classifiers=[
          'Development Status :: 5 - Production/Stable',
          'Environment :: Console',
          'Intended Audience :: Developers',
          'Intended Audience :: Education',
          'Intended Audience :: Information Technology',
          'Intended Audience :: Science/Research',
          'License :: OSI Approved :: MIT License',
          'Operating System :: MacOS',
          'Operating System :: Microsoft :: Windows',
          'Operating System :: POSIX',
          'Operating System :: Unix',
          'Programming Language :: Python',
          'Programming Language :: Python :: 2',
          'Programming Language :: Python :: 2.7',
          'Programming Language :: Python :: 3',
          'Programming Language :: Python :: 3.4',
          'Programming Language :: Python :: 3.5',
          'Programming Language :: Python :: 3.6',
207
          'Programming Language :: Python :: 3.7',
208 209 210 211 212 213 214 215 216 217 218 219
          'Programming Language :: C++',
          'Programming Language :: Python :: Implementation :: CPython',
          'Topic :: Scientific/Engineering',
          'Topic :: Scientific/Engineering :: Image Recognition',
          'Topic :: Software Development',
        ],
        cmake_args=cmake_args,
        cmake_source_dir=cmake_source_dir,
          )


class RearrangeCMakeOutput(object):
220 221 222 223
    """
        Patch SKBuild logic to only take files related to the Python package
        and construct a file hierarchy that SKBuild expects (see below)
    """
224 225 226 227 228
    _setuptools_wrap = None

    # Have to wrap a function reference, or it's converted
    # into an instance method on attr assignment
    import argparse
O
Olli-Pekka Heinisuo 已提交
229
    wraps = argparse.Namespace(_classify_installed_files=None)
230 231 232 233 234 235 236 237
    del argparse

    package_paths_re = None
    packages = None
    files_outside_package = None

    def __init__(self, package_paths_re, files_outside_package, packages):
        cls = self.__class__
O
Olli-Pekka Heinisuo 已提交
238
        assert not cls.wraps._classify_installed_files, "Singleton object"
239 240 241
        import skbuild.setuptools_wrap

        cls._setuptools_wrap = skbuild.setuptools_wrap
O
Olli-Pekka Heinisuo 已提交
242 243
        cls.wraps._classify_installed_files = cls._setuptools_wrap._classify_installed_files
        cls._setuptools_wrap._classify_installed_files = self._classify_installed_files_override
244 245 246 247

        cls.package_paths_re = package_paths_re
        cls.files_outside_package = files_outside_package
        cls.packages = packages
248

249 250
    def __del__(self):
        cls = self.__class__
O
Olli-Pekka Heinisuo 已提交
251 252
        cls._setuptools_wrap._classify_installed_files = cls.wraps._classify_installed_files
        cls.wraps._classify_installed_files = None
253 254
        cls._setuptools_wrap = None

O
Olli-Pekka Heinisuo 已提交
255
    def _classify_installed_files_override(self, install_paths,
256 257 258 259 260 261
            package_data, package_prefixes,
            py_modules, new_py_modules,
            scripts, new_scripts,
            data_files,
            cmake_source_dir, cmake_install_reldir):
        """
262 263 264 265 266 267 268 269 270
            From all CMake output, we're only interested in a few files
            and must place them into CMake install dir according
            to Python conventions for SKBuild to find them:
                package\
                    file
                    subpackage\
                        etc.
        """

271
        cls = self.__class__
272

273 274
        # 'relpath'/'reldir' = relative to CMAKE_INSTALL_DIR/cmake_install_dir
        # 'path'/'dir' = relative to sourcetree root
A
Admin 已提交
275
        cmake_install_dir = os.path.join(cls._setuptools_wrap.CMAKE_INSTALL_DIR(),
276 277 278 279 280 281 282
                                         cmake_install_reldir)
        install_relpaths = [os.path.relpath(p, cmake_install_dir) for p in install_paths]
        fslash_install_relpaths = [p.replace(os.path.sep, '/') for p in install_relpaths]
        relpaths_zip = list(zip(fslash_install_relpaths, install_relpaths))
        del install_relpaths, fslash_install_relpaths

        final_install_relpaths = []
O
Olli-Pekka Heinisuo 已提交
283

284
        print("Copying files from CMake output")
285

286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306
        for package_name, relpaths_re in cls.package_paths_re.items():
            package_dest_reldir = package_name.replace('.', os.path.sep)
            for relpath_re in relpaths_re:
                found = False
                r = re.compile(relpath_re+'$')
                for fslash_relpath, relpath in relpaths_zip:
                    m = r.match(fslash_relpath)
                    if not m: continue
                    found = True
                    new_install_relpath = os.path.join(
                        package_dest_reldir,
                        os.path.basename(relpath))
                    cls._setuptools_wrap._copy_file(
                        os.path.join(cmake_install_dir, relpath),
                        os.path.join(cmake_install_dir, new_install_relpath),
                        hide_listing=False)
                    final_install_relpaths.append(new_install_relpath)
                    del m, fslash_relpath, new_install_relpath
                else:
                    if not found: raise Exception("Not found: '%s'" % relpath_re)
                del r, found
O
Olli-Pekka Heinisuo 已提交
307

308 309 310
        del relpaths_zip

        print("Copying files from non-default sourcetree locations")
311

312 313 314 315 316 317 318 319 320 321
        for package_name, paths in cls.files_outside_package.items():
            package_dest_reldir = package_name.replace('.', os.path.sep)
            for path in paths:
                new_install_relpath = os.path.join(
                        package_dest_reldir,
                        # Don't yet have a need to copy
                        # to subdirectories of package dir
                        os.path.basename(path))
                cls._setuptools_wrap._copy_file(
                    path, os.path.join(cmake_install_dir, new_install_relpath),
322
                    hide_listing=False
323 324 325 326 327
                )
                final_install_relpaths.append(new_install_relpath)

        final_install_paths = [os.path.join(cmake_install_dir, p) for p in final_install_relpaths]

O
Olli-Pekka Heinisuo 已提交
328
        return (cls.wraps._classify_installed_files)(
329 330 331 332 333
            final_install_paths,
            package_data, package_prefixes,
            py_modules, new_py_modules,
            scripts, new_scripts,
            data_files,
334 335 336 337
            # To get around a check that prepends source dir to paths and breaks package detection code.
            cmake_source_dir='',
            cmake_install_dir=cmake_install_reldir
        )
338 339 340 341


def install_packages(*requirements):
    # No more convenient way until PEP 518 is implemented; setuptools only handles eggs
342
    subprocess.check_call([sys.executable, "-m", "pip", "install"] + list(requirements))
343 344 345 346 347 348 349 350 351


def get_opencv_version():
    # cv_version.py should be generated by running find_version.py
    runpy.run_path("find_version.py")
    from cv_version import opencv_version
    return opencv_version


O
Olli-Pekka Heinisuo 已提交
352 353 354 355
def get_build_env_var_by_name(flag_name):

    flag_set = False

356
    try:
O
Olli-Pekka Heinisuo 已提交
357
        flag_set = bool(int(os.getenv('ENABLE_' + flag_name.upper() , None)))
358 359 360
    except Exception:
        pass

O
Olli-Pekka Heinisuo 已提交
361
    if not flag_set:
362
        try:
O
Olli-Pekka Heinisuo 已提交
363
            flag_set = bool(int(open(flag_name + ".enabled").read(1)))
364 365
        except Exception:
            pass
O
Olli-Pekka Heinisuo 已提交
366 367

    return flag_set
368 369


370
def get_or_install(name, version=None):
371
    """ If a package is already installed, build against it. If not, install """
372 373 374
    # Do not import 3rd-party modules into the current process
    import json
    js_packages = json.loads(
O
Olli-Pekka Heinisuo 已提交
375
        subprocess.check_output([sys.executable, "-m", "pip", "list", "--format", "json"]).decode('ascii'))  # valid names & versions are ASCII as per PEP 440
376
    try:
377
        [package] = (package for package in js_packages if package['name'] == name)
378
    except ValueError:
379
        install_packages("%s==%s" % (name, version) if version else name)
380 381 382 383 384 385 386
        return version
    else:
        return package['version']


# This creates a list which is empty but returns a length of 1.
# Should make the wheel a binary distribution and platlib compliant.
O
Olli-Pekka Heinisuo 已提交
387 388 389 390
class EmptyListWithLength(list):
    def __len__(self):
        return 1

391

392 393
if __name__ == '__main__':
    main()