forked from project-gemmi/gemmi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
211 lines (187 loc) · 7.43 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
# This file is based on https://github.com/pybind/python_example
# which is under a BSD-like license:
# https://github.com/pybind/python_example/blob/master/LICENSE
from setuptools import setup, Extension
from setuptools.command.build_ext import build_ext
from setuptools import distutils
import os
import sys
USE_SYSTEM_ZLIB = False
MIN_PYBIND_VER = '2.6.2'
def read_version_from_header():
with open('include/gemmi/version.hpp') as f:
for line in f:
if line.startswith('#define GEMMI_VERSION '):
return line.split()[2].strip('"')
__version__ = read_version_from_header()
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 __str__(self):
import pybind11
return pybind11.get_include()
if USE_SYSTEM_ZLIB:
zlib_library = 'z'
zlib_include_dirs = []
build_libs = []
else:
zlib_library = 'gemmi_zlib'
zlib_include_dirs = ['third_party/zlib']
zlib_files = ['third_party/zlib/%s.c' % name for name in
['adler32', 'crc32', 'gzlib', 'gzread', 'inflate',
'inftrees', 'inffast', 'zutil']]
zlib_macros = [('NO_GZCOMPRESS', '1')]
if os.name != 'nt':
zlib_macros += [('Z_HAVE_UNISTD_H', '1')]
build_libs = [('gemmi_zlib', {'sources': zlib_files,
'macros': zlib_macros})]
ext_modules = [
Extension('gemmi',
['python/%s.cpp' % name for name in
['gemmi', 'align', 'ccp4', 'chemcomp', 'cif', 'custom',
'elem', 'hkl', 'grid', 'meta', 'mol', 'monlib', 'mtz',
'read', 'recgrid', 'scaling', 'search', 'sf', 'sym',
'topo', 'unitcell', 'write']]
+ ['src/%s.cpp' % name for name in
['sprintf', 'mtz', 'to_pdb', 'to_mmcif', 'mtz2cif',
'read_cif', 'mmcif', 'mmread_gz', 'calculate', 'eig3',
'resinfo', 'polyheur', 'monlib', 'topo', 'riding_h', 'crd',
'xds_ascii', 'assembly']],
include_dirs=zlib_include_dirs + [
'include',
'third_party',
# Path to pybind11 headers
get_pybind_include(),
],
libraries=[zlib_library],
language='c++'),
]
# 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', delete=False) as f:
# Don't trigger -Wunused-parameter.
f.write('int main (int, char **) { return 0; }')
fname = f.name
try:
compiler.compile([fname], extra_postargs=[flagname])
except distutils.errors.CompileError:
return False
finally:
try:
os.remove(fname)
except OSError:
pass
return True
def cpp_flag(compiler):
"""Return the -std=c++[11/14/17] compiler flag.
The newer version is prefered over c++11 (when it is available).
"""
flags = ['-std=c++20', '-std=c++17', '-std=c++14', '-std=c++11']
# C++17 on Mac requires higher -mmacosx-version-min, skip it for now
if sys.platform == 'darwin':
flags = flags[2:]
for flag in flags:
if has_flag(compiler, flag):
return flag
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', '/D_CRT_SECURE_NO_WARNINGS'],
'unix': [],
}
l_opts = {
'msvc': [],
'unix': [],
}
if sys.platform == 'win32':
if sys.version_info[0] == 2:
# without these variables distutils insist on using VS 2008
os.environ['DISTUTILS_USE_SDK'] = '1'
os.environ['MSSdk'] = '1'
if sys.version_info[0] >= 3:
c_opts['msvc'].append('/D_UNICODE')
def build_extensions(self):
ct = self.compiler.compiler_type
opts = self.c_opts.get(ct, [])
link_opts = self.l_opts.get(ct, [])
if sys.platform == 'darwin':
darwin_opts = []
if 'MACOSX_DEPLOYMENT_TARGET' not in os.environ:
import platform
mac_ver = platform.mac_ver()
current_macos = tuple(int(x) for x in mac_ver[0].split(".")[:2])
if current_macos > (10, 9):
darwin_opts.append('-mmacosx-version-min=10.9')
if has_flag(self.compiler, '-stdlib=libc++'):
darwin_opts.append('-stdlib=libc++')
opts += darwin_opts
link_opts += darwin_opts
if ct == 'unix':
opts.append(cpp_flag(self.compiler))
if has_flag(self.compiler, '-fvisibility=hidden'):
opts.append('-fvisibility=hidden')
if has_flag(self.compiler, '-g0'):
opts.append('-g0')
if has_flag(self.compiler, '-Wl,-s'):
link_opts.append('-Wl,-s')
elif ct.startswith('mingw'):
#opts.append('-std=c++14')
opts.append(cpp_flag(self.compiler))
opts.append('-fvisibility=hidden')
opts.append('-g0')
link_opts.append('-Wl,-s')
for ext in self.extensions:
ext.define_macros = [('VERSION_INFO',
'"%s"' % self.distribution.get_version())]
ext.extra_compile_args = opts
ext.extra_link_args = link_opts
build_ext.build_extensions(self)
def long_description():
readme_path = os.path.join(os.path.dirname(__file__), "README.md")
with open(readme_path) as f:
lines = f.readlines()
# replace badges from README with this info:
lines[:2] = ['Note: command-line program gemmi is in PyPI\n',
'[gemmi-program](https://pypi.org/project/gemmi-program/).\n']
return ''.join(lines)
setup(
name='gemmi',
version=__version__,
author='Marcin Wojdyr',
author_email='[email protected]',
url='https://project-gemmi.github.io/',
description='library for structural biology',
long_description=long_description(),
long_description_content_type='text/markdown',
libraries=build_libs,
ext_modules=ext_modules,
packages=['gemmi-examples'],
package_dir={'gemmi-examples': 'examples'},
install_requires=[],
setup_requires=['pybind11>=' + MIN_PYBIND_VER],
cmdclass={'build_ext': BuildExt},
zip_safe=False,
license='MPL-2.0', # or, at your option, LGPL-3.0
keywords=('structural bioinformatics, structural biology, crystallography,'
' CIF, mmCIF, PDB, CCP4, MTZ'),
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Topic :: Scientific/Engineering :: Chemistry',
'Programming Language :: C++',
'Programming Language :: Python',
],
)