-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
193 lines (162 loc) · 5.67 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
#!/usr/bin/env python
from __future__ import print_function
import sys
import os
import setuptools
from setuptools import setup, Extension
from setuptools.command.build_ext import build_ext
import pkgconfig
if ((sys.version_info[0] == 2 and sys.version_info[1] < 7) or
(sys.version_info[0] == 3 and sys.version_info[1] < 4)):
sys.stderr.write("Error in setup script for HTSeq:\n")
sys.stderr.write("slmpy support Python 2.7 or 3.4+.")
sys.exit(1)
# Setuptools but not distutils support build/runtime/optional dependencies
# NOTE: old setuptools < 18.0 has issues with extras
kwargs = dict(
setup_requires=[
'pybind11>=2.2',
'numpy',
'pkgconfig',
],
install_requires=[
'pybind11>=2.2',
'numpy',
'pkgconfig',
],
extras_require={
},
)
try:
import numpy
except ImportError:
sys.stderr.write("Setup script: Failed to import 'numpy'.\n")
sys.stderr.write("Please install numpy and then try again.\n")
sys.exit(1)
numpy_include_dir = os.path.join(os.path.dirname(numpy.__file__),
'core', 'include')
# Update version from VERSION file into module
with open('VERSION') as fversion:
__version__ = fversion.readline().rstrip()
with open('slmpy/_version.py', 'wt') as fversion:
fversion.write('__version__ = "'+__version__+'"')
class get_pybind_include(object):
"""Helper class to determine the pybind11 include path
The purpose of this class is to postpone importing pybind11
until it is actually installed, so that the ``get_include()``
method can be invoked. """
def __init__(self, user=False):
self.user = user
def __str__(self):
import pybind11
return pybind11.get_include(self.user)
# As of Python 3.6, CCompiler has a `has_flag` method.
# cf http://bugs.python.org/issue26689
def has_flag(compiler, flagname):
"""Return a boolean indicating whether a flag name is supported on
the specified compiler.
"""
import tempfile
with tempfile.NamedTemporaryFile('w', suffix='.cpp') as f:
f.write('int main (int argc, char **argv) { return 0; }')
try:
compiler.compile([f.name], extra_postargs=[flagname])
except setuptools.distutils.errors.CompileError:
return False
return True
def cpp_flag(compiler):
"""Return the -std=c++[11/14] compiler flag.
The c++14 is prefered over c++11 (when it is available).
"""
if has_flag(compiler, '-std=c++14'):
return '-std=c++14'
elif has_flag(compiler, '-std=c++11'):
return '-std=c++11'
else:
raise RuntimeError('Unsupported compiler -- at least C++11 support is needed!')
class BuildExt(build_ext):
"""A custom build extension for adding compiler-specific options."""
c_opts = {
'msvc': ['/EHsc'],
'unix': ['-msse4.2'],
}
if sys.platform == 'darwin':
c_opts['unix'] += ['-stdlib=libc++', '-mmacosx-version-min=10.7']
def build_extensions(self):
ct = self.compiler.compiler_type
opts = self.c_opts.get(ct, [])
if ct == 'unix':
opts.append('-DVERSION_INFO="%s"' % self.distribution.get_version())
opts.append(cpp_flag(self.compiler))
if has_flag(self.compiler, '-fvisibility=hidden'):
opts.append('-fvisibility=hidden')
elif ct == 'msvc':
opts.append('/DVERSION_INFO=\\"%s\\"' % self.distribution.get_version())
for ext in self.extensions:
ext.extra_compile_args = opts
build_ext.build_extensions(self)
setup(name='slmpy',
version=__version__,
author='Fabio Zanini',
author_email='[email protected]',
maintainer='Fabio Zanini',
maintainer_email='[email protected]',
url='https://github.com/iosonofabio/slmpy',
description="Smart local moving (SLM) community detection in Python/C++",
long_description="""
Smart local moving (SLM) community detection in Python/C++, modeled on the Java
version on https://github.com/mneedham/slm.
- **Development**: https://github.com/iosonofabio/slmpy
- **Author**: Fabio Zanini
- **License**: MIT
- **Requirements**: ``pybind11>=2.2``, ``numpy``, ``pkgconfig`` (see ``requirements.txt``)
.. code-block:: python
from slmpy import ModularityOptimzer
edges = [
[0, 1],
[0, 2],
[0, 3],
[1, 2],
[1, 3],
[2, 3],
[3, 4],
[4, 5],
[4, 6],
[5, 6],
[7, 8],
]
mo = ModularityOptimzer(edges)
mo.fixed_nodes = [0, 4] # This fixes nodes 0 and 4 to be in different communities
communities = mo(algorithm='smart_local_moving')
# Check answer
assert((communities == [0, 0, 0, 0, 1, 1, 1]).all())
""",
license='MIT',
classifiers=[
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX',
'Programming Language :: Python'
],
ext_modules=[
Extension(
'slmpy._slmpy',
['slmpy/network.cpp', 'slmpy/slmpy.cpp'],
include_dirs=[
'slmpy',
numpy_include_dir,
get_pybind_include(),
get_pybind_include(user=True)] +
pkgconfig.parse("eigen3")["include_dirs"],
language='c++',
),
],
py_modules=[
'slmpy.__init__'
],
cmdclass={'build_ext': BuildExt},
zip_safe=False,
**kwargs
)