-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
73 lines (56 loc) · 2.1 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
import glob
import logging
from setuptools import find_packages, setup, Extension
# N.B. log messages typically hidden; use `pip install -v` to see
_logger = logging.getLogger()
try:
import pysam
except ModuleNotFoundError:
_logger.critical("!! pysam must be installed prior to running setup.py (pip install pysam)")
raise
try:
from Cython.Build import cythonize, build_ext
has_cython = True
_logger.info("# cython available; will cythonize .pyx sources")
except ImportError:
has_cython = False
_logger.info("# cython unavailable; using included .c sources")
# ###########################################################################
# extension setup
# https://cython.readthedocs.io/en/latest/src/userguide/source_files_and_compilation.html#configuring-the-c-build
# http://docs.cython.org/en/latest/src/userguide/source_files_and_compilation.html#distributing-cython-modules
glob_ext = "pyx" if has_cython else "c"
src_glob = "uta_align/align/*." + glob_ext
if has_cython:
sources = [src_glob]
else:
sources = glob.glob(src_glob)
extensions = [
Extension("*", sources, include_dirs = pysam.get_include())
]
if has_cython:
compiler_directives = {
'c_string_encoding': 'ascii',
'embedsignature': True,
'language_level': 3
}
extensions = cythonize(extensions, compiler_directives=compiler_directives)
setup(
ext_modules=extensions,
packages=["uta_align"],
)
## <LICENSE>
## Copyright 2014-2020 uta-align Contributors (https://github.com/biocommons/uta-align)
##
## Licensed under the Apache License, Version 2.0 (the "License");
## you may not use this file except in compliance with the License.
## You may obtain a copy of the License at
##
## http://www.apache.org/licenses/LICENSE-2.0
##
## Unless required by applicable law or agreed to in writing, software
## distributed under the License is distributed on an "AS IS" BASIS,
## WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
## See the License for the specific language governing permissions and
## limitations under the License.
## </LICENSE>