-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
80 lines (66 loc) · 2.58 KB
/
setup.py
File metadata and controls
80 lines (66 loc) · 2.58 KB
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
# The CMake interop code is based paritally on hoefling's excellent answer
# to this StackOverflow question:
# https://stackoverflow.com/questions/42585210/extending-setuptools-extension-to-use-cmake-in-setup-py
import os
import pathlib
from setuptools import setup, Extension
from setuptools.command.build_ext import build_ext as build_ext_orig
class CMakeExtension(Extension):
def __init__(self, name):
# don't invoke the original build_ext for this special extension
super().__init__(name, sources=[])
class build_ext(build_ext_orig):
def run(self):
for ext in self.extensions:
self.build_cmake(ext)
super().run()
def build_cmake(self, ext):
cwd = pathlib.Path().absolute()
# these dirs will be created in build_py, so if you don't have
# any python sources to bundle, the dirs will be missing
build_temp = pathlib.Path(self.build_temp)
build_temp.mkdir(parents=True, exist_ok=True)
extdir = pathlib.Path(self.get_ext_fullpath(ext.name))
extdir.mkdir(parents=True, exist_ok=True)
# Configure CMake arguments
config = 'Release'
cmake_args = [
'-DPYLIB=' + str(extdir.parent.absolute()), # destination for the shared library
'-DCMAKE_BUILD_TYPE=' + config,
'-DCMAKE_OSX_DEPLOYMENT_TARGET=10.15'
]
build_args = [ '--config', config ]
# Run CMake and build (automatically copies the .dll / .so / .dylib file)
os.chdir(str(build_temp))
self.spawn(['cmake', str(cwd)] + cmake_args)
if not self.dry_run:
self.spawn(['cmake', '--build', '.'] + build_args)
os.chdir(str(cwd))
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='simpleimageio',
version='1.10.0',
author='Pascal Grittmann',
url='https://github.com/pgrit/SimpleImageIO',
description='A very simple Python wrapper to read and write various HDR and LDR image file formats.',
long_description=long_description,
long_description_content_type="text/markdown",
license="MIT",
packages=['simpleimageio'],
package_dir={'simpleimageio': 'PyWrapper/simpleimageio'},
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
python_requires='>=3.6',
install_requires=[
'numpy'
],
ext_modules=[CMakeExtension('simpleimageio/SimpleImageIOCore')],
cmdclass={
'build_ext': build_ext
},
include_package_data=True,
package_data={"simpleimageio": ["*.js", "*.css"]}
)