-
Notifications
You must be signed in to change notification settings - Fork 29
/
setup.py
181 lines (158 loc) · 6.47 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
# This file is part of xrayutilities.
#
# xrayutilies is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, see <http://www.gnu.org/licenses/>.
#
# Copyright (C) 2009 Eugen Wintersberger <eugen.wintersberger@desy.de>
# Copyright (C) 2010-2024 Dominik Kriegner <dominik.kriegner@gmail.com>
import glob
import os.path
import subprocess
import sys
import tempfile
import numpy
import setuptools
from setuptools import Extension, find_packages, setup
from setuptools.command.build_ext import build_ext
from setuptools.command.build_py import build_py
def has_flag(compiler, flagname, output_dir=None):
# see https://bugs.python.org/issue26689
"""Return a boolean indicating whether a flag name is supported on
the specified compiler.
"""
with tempfile.NamedTemporaryFile('w', suffix='.c', delete=False) as f:
f.write('int main (int argc, char **argv) { return 0; }')
f.close()
try:
obj = compiler.compile([f.name], output_dir=output_dir,
extra_postargs=[flagname])
os.remove(*obj)
except setuptools.distutils.errors.CompileError:
return False
finally:
os.remove(f.name)
return True
class build_ext_subclass(build_ext):
description = "Builds the Python C-extension of xrayutilities"
user_options = (
build_ext.user_options +
[('without-openmp', None, 'build without OpenMP support')])
def initialize_options(self):
super().initialize_options()
self.without_openmp = 0
def finalize_options(self):
super().finalize_options()
self.without_openmp = int(self.without_openmp)
def build_extensions(self):
c = self.compiler.compiler_type
# set extra compiler options
copt = {}
if c in copt:
for flag in copt[c]:
if has_flag(self.compiler, flag, self.build_temp):
for e in self.extensions:
e.extra_compile_args.append(flag)
# set openMP compiler options
if not self.without_openmp:
openmpflags = {'msvc': ('/openmp', None),
'mingw32': ('-fopenmp', '-fopenmp'),
'unix': ('-fopenmp', '-lgomp')}
if c in openmpflags:
flag, lib = openmpflags[c]
if has_flag(self.compiler, flag, self.build_temp):
for e in self.extensions:
e.extra_compile_args.append(flag)
if lib is not None:
e.extra_link_args.append(lib)
e.define_macros.append(('__OPENMP__', None))
super().build_extensions()
class build_with_database(build_py):
dbfilename = os.path.join('materials', 'data', 'elements.db')
def build_database(self):
self.fulldbfilename = os.path.join(self.build_lib, 'xrayutilities',
self.dbfilename)
cmd = [sys.executable,
os.path.join('lib', 'xrayutilities', 'materials',
'_create_database.py'),
self.fulldbfilename]
self.mkpath(os.path.dirname(self.fulldbfilename))
print(f'building database: {self.fulldbfilename}')
try:
if sys.version_info >= (3, 5):
subprocess.run(cmd, stderr=subprocess.PIPE,
stdout=subprocess.PIPE, check=True)
else:
subprocess.check_output(cmd)
except subprocess.CalledProcessError as cpe:
sys.stdout.buffer.write(cpe.stdout)
sys.stdout.buffer.write(cpe.stderr)
raise
def copy_database(self):
pkg_dir = self.get_package_dir("xrayutilities")
inplace_file = os.path.join(pkg_dir, self.dbfilename)
self.copy_file(self.fulldbfilename, inplace_file)
def run(self):
super().run()
self.build_database()
if hasattr(self, 'editable_mode') and self.editable_mode:
self.copy_database()
cmdclass = {'build_py': build_with_database,
'build_ext': build_ext_subclass}
with open('README.md') as f:
long_description = f.read()
extmodul = Extension('xrayutilities.cxrayutilities',
sources=glob.glob(os.path.join('src', '*.c')))
with open('lib/xrayutilities/VERSION') as version_file:
version = version_file.read().strip().replace('\n', '.')
setup(
name="xrayutilities",
version=version,
author="Eugen Wintersberger, Dominik Kriegner",
description="package for x-ray diffraction data evaluation",
classifiers=[
"Programming Language :: C",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Physics",
"Intended Audience :: Science/Research",
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: GNU General Public License v2 or later "
"(GPLv2+)"
],
long_description=long_description,
long_description_content_type="text/markdown",
author_email="eugen.wintersberger@desy.de, dominik.kriegner@gmail.com",
maintainer="Dominik Kriegner",
maintainer_email="dominik.kriegner@gmail.com",
package_dir={'': 'lib'},
packages=find_packages('lib'),
package_data={
"xrayutilities": ["VERSION", "*.conf"],
"xrayutilities.materials": [os.path.join("data", "*")]
},
python_requires='~=3.6',
setup_requires=['numpy', 'scipy', 'h5py'],
install_requires=['numpy>=1.9.2', 'scipy>=0.18.0', 'h5py', 'lmfit>=1.0.1'],
extras_require={
'plot': ["matplotlib>=3.1.0"],
'3D': ["mayavi"],
},
include_dirs=[numpy.get_include()],
ext_modules=[extmodul],
cmdclass=cmdclass,
url="https://xrayutilities.sourceforge.io",
license="GPLv2",
)