"torchvision/vscode:/vscode.git/clone" did not exist on "6aacf497086afab07dee2c231dc585bb6779e908"
setup.py 20.7 KB
Newer Older
1
"""setup for the dlib project
Ehsan Azarnasab's avatar
Ehsan Azarnasab committed
2
3
 Copyright (C) 2015  Ehsan Azar (dashesy@linux.com)
 License: Boost Software License   See LICENSE.txt for the full license.
4

5
6
7
8
This file basically just uses CMake to compile the dlib python bindings project
located in the tools/python folder and then puts the outputs into standard
python packages.

9
10
11
12
To build the dlib:
    python setup.py build
To build and install:
    python setup.py install
13
To package the wheel (after pip installing twine and wheel):
14
    python setup.py bdist_wheel
15
16
To upload the wheel to PyPi
    twine upload dist/*.whl
17
18
19
20
To repackage the previously built package as wheel (bypassing build):
    python setup.py bdist_wheel --repackage
To install a develop version (egg with symbolic link):
    python setup.py develop
21
22
23
24
To exclude/include certain options in the cmake config use --yes and --no:
    for example:
    --yes DLIB_NO_GUI_SUPPORT: will set -DDLIB_NO_GUI_SUPPORT=yes
    --no DLIB_NO_GUI_SUPPORT: will set -DDLIB_NO_GUI_SUPPORT=no
25
Additional options:
26
    --compiler-flags: pass flags onto the compiler, e.g. --compiler-flag "-Os -Wall" passes -Os -Wall onto GCC.
27
28
    --debug: makes a debug build
    --cmake: path to specific cmake executable
29
    --G or -G: name of a build system generator (equivalent of passing -G "name" to cmake)
30
31
32
33
34
35
36
37
38
39
40
"""

from __future__ import print_function
import shutil
import stat
import errno

from setuptools.command.bdist_egg import bdist_egg as _bdist_egg
from setuptools.command.develop import develop as _develop
from distutils.command.build_ext import build_ext as _build_ext
from distutils.command.build import build as _build
Ehsan Azarnasab's avatar
Ehsan Azarnasab committed
41
from distutils.errors import DistutilsSetupError
42
from distutils.spawn import find_executable
jimreesman's avatar
jimreesman committed
43
from distutils.sysconfig import get_python_inc, get_python_version, get_config_var
44
45
46
47
48
49
50
51
52
from distutils import log
import os
import sys
from setuptools import Extension, setup
import platform
from subprocess import Popen, PIPE, STDOUT
import signal
from threading import Thread
import time
53
import re
54
55
56
57
58
59
60
61
62
63
64
65


# change directory to this module path
try:
    this_file = __file__
except NameError:
    this_file = sys.argv[0]
this_file = os.path.abspath(this_file)
if os.path.dirname(this_file):
    os.chdir(os.path.dirname(this_file))
script_dir = os.getcwd()

66

Ehsan Azarnasab's avatar
Ehsan Azarnasab committed
67
68
69
70
71
72
def _get_options():
    """read arguments and creates options
    """
    _cmake_path = find_executable("cmake")
    _cmake_extra = []
    _cmake_config = 'Release'
73

Ehsan Azarnasab's avatar
Ehsan Azarnasab committed
74
75
    _options = []
    opt_key = None
76
    _generator_set = False  # if a build generator is set
77

78
    argv = [arg for arg in sys.argv]  # take a copy
Ehsan Azarnasab's avatar
Ehsan Azarnasab committed
79
    # parse commandline options and consume those we care about
80
    for opt_idx, arg in enumerate(argv):
Ehsan Azarnasab's avatar
Ehsan Azarnasab committed
81
        if opt_key == 'cmake':
82
            _cmake_path = arg
83
84
        elif opt_key == 'compiler-flags':
            _cmake_extra.append('-DCMAKE_CXX_FLAGS={arg}'.format(arg=arg.strip()))
85
        elif opt_key == 'yes':
86
            _cmake_extra.append('-D{arg}=yes'.format(arg=arg.strip()))
87
        elif opt_key == 'no':
88
            _cmake_extra.append('-D{arg}=no'.format(arg=arg.strip()))
89
        elif opt_key == 'G':
90
            _cmake_extra += ['-G', arg.strip()]
91
            _generator_set = True
Ehsan Azarnasab's avatar
Ehsan Azarnasab committed
92
93
94

        if opt_key:
            sys.argv.remove(arg)
95
            opt_key = None
Ehsan Azarnasab's avatar
Ehsan Azarnasab committed
96
            continue
97

98
99
100
101
102
103
        # Keep -G to resemble cmake's
        if arg == '-G' or arg.lower() == '--g':
            opt_key = 'G'
            sys.argv.remove(arg)
            continue

104
105
        if not arg.startswith('--'):
            continue
Ehsan Azarnasab's avatar
Ehsan Azarnasab committed
106

107
        opt = arg[2:].lower()
Ehsan Azarnasab's avatar
Ehsan Azarnasab committed
108
109
110
111
112
        if opt == 'cmake':
            _cmake_path = None
            opt_key = opt
            sys.argv.remove(arg)
            continue
113
        elif opt in ['yes', 'no', 'compiler-flags']:
114
115
116
            opt_key = opt
            sys.argv.remove(arg)
            continue
Ehsan Azarnasab's avatar
Ehsan Azarnasab committed
117
118
119
120
121
122

        custom_arg = True
        if opt == 'debug':
            _cmake_config = 'Debug'
        elif opt == 'release':
            _cmake_config = 'Release'
Ehsan Azarnasab's avatar
Ehsan Azarnasab committed
123
        elif opt in ['repackage']:
Ehsan Azarnasab's avatar
Ehsan Azarnasab committed
124
125
126
127
128
            _options.append(opt)
        else:
            custom_arg = False
        if custom_arg:
            sys.argv.remove(arg)
129

130
    return _options, _cmake_config, _cmake_path, _cmake_extra, _generator_set
131

132
options, cmake_config, cmake_path, cmake_extra, generator_set = _get_options()
133

134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
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
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248

def reg_value(rk, rname):
    """enumerate the subkeys in a registry key
    :param rk: root key in registry
    :param rname: name of the value we are interested in
    """
    try:
        import _winreg as winreg
    except ImportError:
        # noinspection PyUnresolvedReferences
        import winreg

    count = 0
    try:
        while True:
            name, value, _ = winreg.EnumValue(rk, count)
            if rname == name:
                return value
            count += 1
    except OSError:
        pass

    return None


def enum_reg_key(rk):
    """enumerate the subkeys in a registry key
    :param rk: root key in registry
    """
    try:
        import _winreg as winreg
    except ImportError:
        # noinspection PyUnresolvedReferences
        import winreg

    sub_keys = []
    count = 0
    try:
        while True:
            name = winreg.EnumKey(rk, count)
            sub_keys.append(name)
            count += 1
    except OSError:
        pass

    return sub_keys


def get_msvc_win64_generator():
    """find the default MSVC generator but Win64
    This logic closely matches cmake's resolution for default build generator.
    Only we select the Win64 version of it.
    """
    try:
        import _winreg as winreg
    except ImportError:
        # noinspection PyUnresolvedReferences
        import winreg

    known_vs = {
        "6.0": "Visual Studio 6",
        "7.0": "Visual Studio 7",
        "7.1": "Visual Studio 7 .NET 2003",
        "8.0": "Visual Studio 8 2005",
        "9.0": "Visual Studio 9 2008",
        "10.0": "Visual Studio 10 2010",
        "11.0": "Visual Studio 11 2012",
        "12.0": "Visual Studio 12 2013",
        "14.0": "Visual Studio 14 2015",
    }

    newest_vs = None
    newest_ver = 0

    platform_arch = platform.architecture()[0]
    sam = winreg.KEY_WOW64_32KEY + winreg.KEY_READ if '64' in platform_arch else winreg.KEY_READ
    for vs in ['VisualStudio\\', 'VCExpress\\', 'WDExpress\\']:
        vs_key = "SOFTWARE\\Microsoft\\{vs}\\".format(vs=vs)
        try:
            root_key = winreg.OpenKey(winreg.HKEY_LOCAL_MACHINE, vs_key, 0, sam)
        except OSError:
            continue
        try:
            sub_keys = enum_reg_key(root_key)
        except OSError:
            sub_keys = []
        winreg.CloseKey(root_key)
        if not sub_keys:
            continue

        # look to see if we have InstallDir
        for sub_key in sub_keys:
            try:
                root_key = winreg.OpenKey(winreg.HKEY_LOCAL_MACHINE, vs_key + sub_key, 0, sam)
            except OSError:
                continue
            ins_dir = reg_value(root_key, 'InstallDir')
            winreg.CloseKey(root_key)

            if not ins_dir:
                continue

            gen_name = known_vs.get(sub_key)
            if gen_name is None:
                # if it looks like a version number
                try:
                    ver = float(sub_key)
                except ValueError:
                    continue
                gen_name = 'Visual Studio %d' % int(ver)
            else:
                ver = float(sub_key)

            if ver > newest_ver:
                newest_vs = gen_name
249
                newest_ver = ver
250
251
252
253
254

    if newest_vs:
        return ['-G', newest_vs + ' Win64']
    return []

255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
try:
    from Queue import Queue, Empty
except ImportError:
    # noinspection PyUnresolvedReferences
    from queue import Queue, Empty  # python 3.x


_ON_POSIX = 'posix' in sys.builtin_module_names


def enqueue_output(out, queue):
    for line in iter(out.readline, b''):
        queue.put(line)


def _log_buf(buf):
    if not buf:
        return
273
274
    if sys.stdout.encoding:
        buf = buf.decode(sys.stdout.encoding)
275
276
277
278
279
280
    buf = buf.rstrip()
    lines = buf.splitlines()
    for line in lines:
        log.info(line)


281
282
def run_process(cmds, timeout=None):
    """run a process asynchronously
283
    :param cmds: list of commands to invoke on a shell e.g. ['make', 'install']
284
    :param timeout: timeout in seconds (optional)
285
286
    """

287
    # open process as its own session, and with no stdout buffering
288
289
290
    p = Popen(cmds,
              stdout=PIPE, stderr=STDOUT,
              bufsize=1,
Ehsan Azarnasab's avatar
Ehsan Azarnasab committed
291
              close_fds=_ON_POSIX, preexec_fn=os.setsid if _ON_POSIX else None)
292

293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
    q = Queue()
    t = Thread(target=enqueue_output, args=(p.stdout, q))
    t.daemon = True  # thread dies with the program
    t.start()

    _time = time.time()
    e = None
    try:
        while t.isAlive():
            try:
                buf = q.get(timeout=.1)
            except Empty:
                buf = b''
            _log_buf(buf)
            elapsed = time.time() - _time
            if timeout and elapsed > timeout:
                break
        # Make sure we print all the output from the process.
        if p.stdout:
            for line in p.stdout:
                _log_buf(line)
            p.wait()
    except (KeyboardInterrupt, SystemExit) as e:
        # if user interrupted
        pass

    # noinspection PyBroadException
    try:
        os.kill(p.pid, signal.SIGINT)
    except (KeyboardInterrupt, SystemExit) as e:
        pass
    except:
        pass

    # noinspection PyBroadException
    try:
        if e:
            os.kill(p.pid, signal.SIGKILL)
        else:
            p.wait()
    except (KeyboardInterrupt, SystemExit) as e:
        # noinspection PyBroadException
        try:
            os.kill(p.pid, signal.SIGKILL)
        except:
            pass
    except:
        pass

    t.join(timeout=0.1)
    if e:
        raise e
345
346
347
348
349
350
351
352
353
354

    return p.returncode


def readme(fname):
    """Read text out of a file relative to setup.py.
    """
    return open(os.path.join(script_dir, fname)).read()


Ehsan Azarnasab's avatar
Ehsan Azarnasab committed
355
356
357
def read_version():
    """Read version information
    """
358
359
360
    major = re.findall("set\(CPACK_PACKAGE_VERSION_MAJOR.*\"(.*)\"", open('dlib/CMakeLists.txt').read())[0]
    minor = re.findall("set\(CPACK_PACKAGE_VERSION_MINOR.*\"(.*)\"", open('dlib/CMakeLists.txt').read())[0]
    patch = re.findall("set\(CPACK_PACKAGE_VERSION_PATCH.*\"(.*)\"", open('dlib/CMakeLists.txt').read())[0]
361
    return major + '.' + minor + '.' + patch
Ehsan Azarnasab's avatar
Ehsan Azarnasab committed
362

Ehsan Azarnasab's avatar
Ehsan Azarnasab committed
363

364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
def rmtree(name):
    """remove a directory and its subdirectories.
    """
    def remove_read_only(func, path, exc):
        excvalue = exc[1]
        if func in (os.rmdir, os.remove) and excvalue.errno == errno.EACCES:
            os.chmod(path, stat.S_IRWXU | stat.S_IRWXG | stat.S_IRWXO)
            func(path)
        else:
            raise
    shutil.rmtree(name, ignore_errors=False, onerror=remove_read_only)


def copy_file(src, dst):
    """copy a single file and log
    """
Ehsan Azarnasab's avatar
Ehsan Azarnasab committed
380
    log.info("Copying file %s -> %s." % (src, dst))
381
382
383
    shutil.copy2(src, dst)


384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
def clean_dist():
    """re-create the dist folder
    """
    dist_dir = os.path.join(script_dir, "./dist")
    if os.path.exists(dist_dir):
        log.info('Removing distribution directory %s' % dist_dir)
        rmtree(dist_dir)

    dist_dir = os.path.join(script_dir, "./dist/dlib")
    try:
        os.makedirs(dist_dir)
    except OSError:
        pass


# always start with a clean slate
clean_dist()


403
404
405
406
407
408
409
# noinspection PyPep8Naming
class build(_build):
    def run(self):
        repackage = 'repackage' in options
        if not repackage:
            self.build_dlib()

410
411
        # this is where the extension examples go
        dist_dir_examples = os.path.join(script_dir, "./dist/dlib/examples")
412
413
414
415
416
        try:
            os.makedirs(dist_dir_examples)
        except OSError:
            pass

417
418
        # this is where the extension goes
        dist_dir = os.path.join(script_dir, "./dist/dlib")
419
        log.info('Populating the distribution directory %s ...' % dist_dir)
420
421

        # create the module init files
422
423
424
425
        with open(os.path.join(dist_dir, '__init__.py'), 'w') as f:
            # just so that we can `import dlib` and not `from dlib import dlib`
            f.write('from .dlib import *\n')
            # add version here
Davis King's avatar
Davis King committed
426
            f.write('__version__ = "{ver}"\n'.format(ver=read_version()))
427
428
429
430
        with open(os.path.join(dist_dir_examples, '__init__.py'), 'w'):
            pass

        # this is where the extension and Python examples are located
431
        out_dir = os.path.join(script_dir, "./python_examples")
432

433
434
435
436
437
        # these are the created artifacts we want to package
        dll_ext = ['.so']
        if sys.platform == "win32":
            dll_ext = ['.pyd', '.dll']

438
439
440
441
442
443
444
        ext_found = False
        # manually copy everything to distribution folder with package hierarchy in mind
        names = os.listdir(out_dir)
        for name in names:
            srcname = os.path.join(out_dir, name)
            dstname = os.path.join(dist_dir, name)
            dstextname = os.path.join(dist_dir_examples, name)
445
446
447

            name, extension = os.path.splitext(name.lower())
            if extension in ['.py', '.txt']:
448
                copy_file(srcname, dstextname)
449
            elif extension in dll_ext:
450
451
452
453
454
                if name.startswith('dlib'):
                    ext_found = True
                copy_file(srcname, dstname)

        if not ext_found:
455
            raise DistutilsSetupError("Cannot find built dlib extension module.")
456
457
458
459
460
461
462

        return _build.run(self)

    @staticmethod
    def build_dlib():
        """use cmake to build and install the extension
        """
463
        if cmake_path is None:
464
465
466
467
468
469
470
471
472
473
474
475
476
477
            cmake_install_url = "https://cmake.org/install/"
            message = ("You can install cmake using the instructions at " +
                       cmake_install_url)
            msg_pkgmanager = ("You can install cmake on {0} using "
                              "`sudo {1} install cmake`.")
            if sys.platform == "darwin":
                pkgmanagers = ('brew', 'port')
                for manager in pkgmanagers:
                    if find_executable(manager) is not None:
                        message = msg_pkgmanager.format('OSX', manager)
                        break
            elif sys.platform.startswith('linux'):
                try:
                    import distro
478
                except ImportError as err:
479
                    import pip
480
                    pip_exit = pip.main(['install', '-q', 'distro'])
481
                    if pip_exit > 0:
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
                        log.debug("Unable to install `distro` to identify "
                                  "the recommended command. Falling back "
                                  "to default error message.")
                        distro = err
                    else:
                        import distro
                if not isinstance(distro, ImportError):
                    distname = distro.id()
                    if distname in ('debian', 'ubuntu'):
                        message = msg_pkgmanager.format(
                            distname.title(), 'apt-get')
                    elif distname in ('fedora', 'centos', 'redhat'):
                        pkgmanagers = ("dnf", "yum")
                        for manager in pkgmanagers:
                            if find_executable(manager) is not None:
                                message = msg_pkgmanager.format(
                                    distname.title(), manager)
                                break
500
501
502
503
            raise DistutilsSetupError(
                "Cannot find cmake, ensure it is installed and in the path.\n"
                + message + "\n"
                "You can also specify its path with --cmake parameter.")
Ehsan Azarnasab's avatar
Ehsan Azarnasab committed
504

505
506
507
        platform_arch = platform.architecture()[0]
        log.info("Detected Python architecture: %s" % platform_arch)

508
509
        # make sure build artifacts are generated for the version of Python currently running
        cmake_extra_arch = []
510

511
512
513
514
515
516
        inc_dir = get_python_inc()
        lib_dir = get_config_var('LIBDIR')
        if (inc_dir != None):
            cmake_extra_arch += ['-DPYTHON_INCLUDE_DIR=' + inc_dir]
        if (lib_dir != None):
            cmake_extra_arch += ['-DCMAKE_LIBRARY_PATH=' + lib_dir]
517

518
519
520
        if sys.version_info >= (3, 0):
            cmake_extra_arch += ['-DPYTHON3=yes']

521
522
523
524
525
526
527
528
        log.info("Detected platform: %s" % sys.platform)
        if sys.platform == "darwin":
            # build on OS X

            # by default, cmake will choose the system python lib in /usr/lib
            # this checks the sysconfig and will correctly pick up a brewed python lib
            # e.g. in /usr/local/Cellar
            py_ver = get_python_version()
529
            # check: in some virtual environments the libpython has the form "libpython_#m.dylib
530
            py_lib = os.path.join(get_config_var('LIBDIR'), 'libpython'+py_ver+'.dylib')
531
532
533
            if not os.path.isfile(py_lib):
                py_lib = os.path.join(get_config_var('LIBDIR'), 'libpython'+py_ver+'m.dylib')
                
534
535
            cmake_extra_arch += ['-DPYTHON_LIBRARY={lib}'.format(lib=py_lib)]

536
537
        if sys.platform == "win32":
            if platform_arch == '64bit' and  not generator_set:
538
539
                cmake_extra_arch += get_msvc_win64_generator()

540
541
542
543
544
545
546
            # this imitates cmake in path resolution
            py_ver = get_python_version()
            for ext in [py_ver.replace(".", "") + '.lib', py_ver + 'mu.lib', py_ver + 'm.lib', py_ver + 'u.lib']:
                py_lib = os.path.abspath(os.path.join(inc_dir, '../libs/', 'python' + ext))
                if os.path.exists(py_lib):
                    cmake_extra_arch += ['-DPYTHON_LIBRARY={lib}'.format(lib=py_lib)]
                    break
547

548
        build_dir = os.path.join(script_dir, "./tools/python/build")
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
        if os.path.exists(build_dir):
            log.info('Removing build directory %s' % build_dir)
            rmtree(build_dir)

        try:
            os.makedirs(build_dir)
        except OSError:
            pass

        # cd build
        os.chdir(build_dir)
        log.info('Configuring cmake ...')
        cmake_cmd = [
            cmake_path,
            "..",
564
        ] + cmake_extra + cmake_extra_arch
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
        if run_process(cmake_cmd):
            raise DistutilsSetupError("cmake configuration failed!")

        log.info('Build using cmake ...')

        cmake_cmd = [
            cmake_path,
            "--build", ".",
            "--config", cmake_config,
            "--target", "install",
        ]

        if run_process(cmake_cmd):
            raise DistutilsSetupError("cmake build failed!")

580
        # cd back where setup awaits
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
        os.chdir(script_dir)


# noinspection PyPep8Naming
class develop(_develop):

    def __init__(self, *args, **kwargs):
        _develop.__init__(self, *args, **kwargs)

    def run(self):
        self.run_command("build")
        return _develop.run(self)


# noinspection PyPep8Naming
class bdist_egg(_bdist_egg):
    def __init__(self, *args, **kwargs):
        _bdist_egg.__init__(self, *args, **kwargs)

    def run(self):
        self.run_command("build")
        return _bdist_egg.run(self)


# noinspection PyPep8Naming
class build_ext(_build_ext):
    def __init__(self, *args, **kwargs):
        _build_ext.__init__(self, *args, **kwargs)

    def run(self):
        # cmake will do the heavy lifting, just pick up the fruits of its labour
        pass

setup(
    name='dlib',
Ehsan Azarnasab's avatar
Ehsan Azarnasab committed
616
    version=read_version(),
617
618
    keywords=['dlib', 'Computer Vision', 'Machine Learning'],
    description='A toolkit for making real world machine learning and data analysis applications',
619
    long_description=readme('README.md'),
620
621
622
623
    author='Davis King',
    author_email='davis@dlib.net',
    url='https://github.com/davisking/dlib',
    license='Boost Software License',
624
    packages=['dlib'],
625
626
627
628
629
630
631
632
633
634
635
    package_dir={'': 'dist'},
    include_package_data=True,
    cmdclass={
        'build': build,
        'build_ext': build_ext,
        'bdist_egg': bdist_egg,
        'develop': develop,
    },
    zip_safe=False,
    ext_modules=[Extension('dlib', [])],
    ext_package='dlib',
Ehsan Azarnasab's avatar
Ehsan Azarnasab committed
636
637
638
639
640
641
642
643
644
645
646
647
648
649
    classifiers=[
        'Development Status :: 5 - Production/Stable',
        'Intended Audience :: Science/Research',
        'Intended Audience :: Developers',
        'Operating System :: MacOS :: MacOS X',
        'Operating System :: POSIX',
        'Operating System :: POSIX :: Linux',
        'Operating System :: Microsoft',
        'Operating System :: Microsoft :: Windows',
        'Programming Language :: C++',
        'Programming Language :: Python',
        'Programming Language :: Python :: 2',
        'Programming Language :: Python :: 2.6',
        'Programming Language :: Python :: 2.7',
650
651
        'Programming Language :: Python :: 3',
        'Programming Language :: Python :: 3.4',
Ehsan Azarnasab's avatar
Ehsan Azarnasab committed
652
        'Topic :: Scientific/Engineering',
Davis King's avatar
Davis King committed
653
        'Topic :: Scientific/Engineering :: Artificial Intelligence',
Ehsan Azarnasab's avatar
Ehsan Azarnasab committed
654
655
656
        'Topic :: Scientific/Engineering :: Image Recognition',
        'Topic :: Software Development',
    ],
657
)