This repository has been archived by the owner on Aug 16, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 91
/
Copy pathsetup.py
244 lines (217 loc) · 8.63 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
132
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
#!/usr/bin/env python2
# -*- coding: utf-8 -*-
import os
import sys
import ast
import re
import subprocess
from setuptools import find_packages
import functools
import fnmatch
# get version number
# avoid importing from package
version_re = re.compile(r'__version__\s+=\s+(.*)')
with open('butterflow/version.py', 'rb') as f:
version = str(ast.literal_eval(version_re.search(
f.read().decode('utf-8')).group(1)))
# directories
rootdir = os.path.abspath(os.sep)
topdir = os.path.join(os.path.dirname(os.path.realpath(__file__)))
pkgdir = os.path.join(topdir, 'butterflow')
dependsdir = os.path.join(topdir, 'depends')
# are we building a development version?
building = True
for x in sys.argv:
if x.startswith('build') or x.startswith('develop'):
building = False
is_devbuild = ('dev' in version or 'a' in version) and not building
# make a list with no duplicates
# does not maintain ordering
def mklist(*items):
s = set([])
for x in items:
if isinstance(x, list):
for y in x:
s.add(y)
elif x is not None:
s.add(x)
return list(s)
py_ver_X = sys.version_info.major
py_ver_Y = sys.version_info.minor
py_ver = '{}.{}'.format(py_ver_X, py_ver_Y)
homebrew_prefix = None
homebrew_site_pkgs = None
try:
homebrew_prefix = subprocess.Popen(['brew', '--prefix'],
stdout=subprocess.PIPE)
homebrew_prefix = homebrew_prefix.stdout.read().strip()
except Exception:
# fall back to environment variable if brew command is not found
if 'HOMEBREW_PREFIX' in os.environ:
homebrew_prefix = os.environ['HOMEBREW_PREFIX']
if homebrew_prefix is not None:
homebrew_site_pkgs = os.path.join(homebrew_prefix, 'lib/python{}/'
'site-packages/'.format(py_ver))
# Because some formulae provide python bindings, homebrew builds bindings
# against the first python (and python-config) in PATH (check
# `which python`).
#
# Homebrew site-packages should preceed all others on sys.path
# if it exists:
sys.path.insert(1, homebrew_site_pkgs)
cflags = ['-std=c11'] # c compilation flags
linkflags = [] # linker flags
cxxflags = []
is_win = sys.platform.startswith('win')
is_osx = sys.platform.startswith('darwin')
is_nix = sys.platform.startswith('linux')
# should we use cxfreeze?
use_cx_freeze = False
if is_win and 'build_exe' in sys.argv:
try:
# cxfreeze extends setuptools and should be imported after it
from cx_Freeze import setup, Executable
from distutils.core import Extension # cxfreeze builds upon distutils
use_cx_freeze = True
except ImportError as exc:
sys.exit(exc)
else:
from setuptools import setup, Extension, find_packages
# global cflags
if is_devbuild:
cflags.append('-Wall')
cflags.append('-g') # turn off debugging symbols for release
cflags.extend(['-O0', '-fbuiltin', '-fdiagnostics-show-option'])
# disable warnings that are safe to ignore
cflags.extend(['-Wno-unused-variable', '-Wno-unused-function'])
if is_osx:
cflags.extend(['-Wno-shorten-64-to-32', '-Wno-overloaded-virtual',
'-Wno-#warnings'])
else:
cflags.extend(['-Wno-cpp'])
# set cxxflags, remove c only options
for x in cflags:
if x != '-std=c11' and \
x != '-Wstrict-prototypes':
cxxflags.append(x)
# global link flags
if is_nix:
linkflags.extend(['-shared', '-Wl,--export-dynamic'])
elif is_osx:
# Don't explicity link against the system python on OSX to prevent
# segfaults arising from modules being built with one python (i.e. system
# python) and imported from a foreign python (i.e. brewed python).
#
# See: https://github.com/Homebrew/homebrew/blob/master/share/doc/
# homebrew/Common-Issues.md#python-segmentation-fault-11-on-import-
# some_python_module
#
# Building modules with `-undefined dynamic_lookup` instead of an explict
# link allows symbols to be resolved at import time. `otool -L <module>.so`
# shouldn't mention Python.
# See: https://github.com/Homebrew/homebrew-science/pull/1886
linkflags.append('-Wl,-undefined,dynamic_lookup')
linkflags.extend(['-arch', 'x86_64'])
avinfo_ext = Extension('butterflow.avinfo', extra_compile_args=cflags,
extra_link_args=linkflags,
libraries=['avcodec', 'avformat', 'avutil'],
sources=[os.path.join(pkgdir, 'avinfo.c')],
language='c')
# opencl args
cl_lib = None
cl_linkflags = None
if is_osx:
cl_linkflags = ['-framework', 'OpenCL']
else:
cl_lib = ['OpenCL']
old_linkflags = linkflags
if cl_linkflags:
linkflags.extend(cl_linkflags)
ocl_ext = Extension('butterflow.ocl', extra_compile_args=cxxflags,
extra_link_args=linkflags,
libraries=mklist(cl_lib, 'opencv_core', 'opencv_ocl'),
sources=[os.path.join(pkgdir, 'ocl.cpp')], language='c++')
linkflags = old_linkflags
# numpy args
np_includes = None
if is_osx:
if homebrew_prefix is not None:
# Homebrew opencv uses a brewed numpy by default but it's possible for
# a user to their own or the system one if the --without-brewed-numpy
# option is used.
#
# Note: usually all pythonX.Y packages with headers are placed in
# /usr/include/pythonX.Y/<package> or /usr/local/include/, but
# homebrew policy is to put them in site-packages
np_includes = os.path.join(homebrew_site_pkgs, 'numpy/core/include')
else:
# fallback to the system's numpy
np_includes = '/System/Library/Frameworks/Python.framework/Versions/'\
'{}/Extras/lib/python/numpy/core/include'.format(py_ver)
# opencv-ndarray-conversion args
nddir = os.path.join(dependsdir, 'opencv-ndarray-conversion')
nd_includes = os.path.join(nddir, 'include')
motion_ext = Extension('butterflow.motion',
extra_compile_args=cxxflags,
extra_link_args=linkflags,
include_dirs=mklist(nd_includes, np_includes),
libraries=['opencv_core', 'opencv_ocl',
'opencv_imgproc'],
sources=[os.path.join(pkgdir, 'motion.cpp'),
os.path.join(nddir, 'src', 'conversion.cpp')],
language='c++')
# shared args
setup_kwargs = {
'name': 'butterflow',
'packages': find_packages(exclude=['tests']),
'ext_modules': [avinfo_ext, ocl_ext, motion_ext],
'version': version,
'author': 'Duong Pham',
'author_email': 'dthpham@gmail.com',
'url': 'https://github.com/dthpham/butterflow',
'download_url': 'http://srv.dthpham.me/butterflow/butterflow-{}.tar.gz'.
format(version),
'description': 'Makes motion interpolated and fluid slow motion videos',
'keywords': ['motion interpolation', 'slow motion', 'slowmo',
'smooth motion'],
'entry_points': {'console_scripts': ['butterflow = butterflow.cli:main']},
'test_suite': 'tests'
}
setup = functools.partial(setup, **setup_kwargs)
if use_cx_freeze:
additional_files = []
with open('include_files.txt', 'r') as f:
for line in f:
line = line.rstrip()
if line.startswith('#'):
continue
elif line.startswith('prefix'):
prefix = line.split('=')[1]
continue
else:
pattern = line
for file in os.listdir(prefix):
if fnmatch.fnmatch(file, pattern):
filename = file
relpath = os.path.relpath(os.path.join(prefix, filename))
additional_files.append((relpath, filename))
build_exe_options = {
'packages': ['butterflow'],
'includes': ['numpy.core._methods', 'numpy.lib.format'], # Bug: https://stackoverflow.com/q/41735413
'include_msvcr': True,
'excludes': ['copyreg', 'distutils', 'email', 'future', 'pydoc_data',
'setuptools', 'test', 'tests', 'test', 'Tkinter'],
'include_files': additional_files,
# 'replace_paths': [("*", "")],
}
executables = [
Executable(script='butterflow/__main__.py',
# initScript=os.path.abspath('butterflow/console.py'),
base=None,
targetName='butterflow.exe',
icon='butterflow.ico',
copyright='Copyright (c) 2017 Duong Pham')
]
setup(options={'build_exe': build_exe_options}, executables=executables)
else:
setup()