-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
51 lines (46 loc) · 1.83 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
from distutils.sysconfig import get_config_vars, get_config_var, get_python_inc
from setuptools import setup, Extension
from setuptools.command.build_ext import build_ext as _build_ext
import os
include_dirs = [
os.path.join(os.path.dirname(os.path.abspath(__file__)), "zwatershed"),
os.path.dirname(get_python_inc()),
get_python_inc()
]
library_dirs = [
os.path.join(os.path.dirname(os.path.abspath(__file__)), "zwatershed"),
get_config_var("LIBDIR")
]
# Remove the "-Wstrict-prototypes" compiler option, which isn't valid for C++.
cfg_vars = get_config_vars()
if "CFLAGS" in cfg_vars:
cfg_vars["CFLAGS"] = cfg_vars["CFLAGS"].replace("-Wstrict-prototypes", "")
class build_ext(_build_ext):
def finalize_options(self):
_build_ext.finalize_options(self)
# Prevent numpy from thinking it is still in its setup process:
__builtins__.__NUMPY_SETUP__ = False
import numpy
self.include_dirs.append(numpy.get_include())
setup(name='zwatershed',
version='0.7',
description='Fast watersheds',
url='https://github.com/TuragaLab/zwatershed',
author='Chandan Singh',
author_email='[email protected]',
cmdclass=dict(
build_ext=build_ext
),
license='MIT',
install_requires=['cython','numpy','h5py'],
setup_requires=['cython','numpy'],
packages=['zwatershed'],
ext_modules = [Extension("zwatershed.zwatershed",
["zwatershed/zwatershed.pyx", "zwatershed/zwatershed_main.cpp"],
include_dirs=include_dirs,
library_dirs=library_dirs,
language='c++',
# std= 'c++11',
extra_link_args=["-std=c++11"],
extra_compile_args=["-std=c++11", "-w"])],
zip_safe=False)