generated from hasindu2008/slow5-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
114 lines (98 loc) · 3.71 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
try:
from setuptools import setup, Extension
from setuptools.command.install import install
except ImportError:
from distutils.core import setup
from distutils.extension import Extension
import sys
import platform
import os
include_dirs = []
# import numpy as np
# creat dummy closures for metadata reading on first parse of setup.py
# that way it picks up the requirements and installs them, then can use them
# for the install.
try:
import numpy as np
include_dirs = ['include/', np.get_include(), 'thirdparty/streamvbyte/include']
except ImportError:
include_dirs = ['include/', 'thirdparty/streamvbyte/include']
def np(*args, ** kwargs ):
import numpy as np
return np(*args, ** kwargs)
try:
from Cython.Build import build_ext
except ImportError:
def build_ext(*args, ** kwargs ):
from Cython.Build import build_ext
return build_ext(*args, ** kwargs)
# from Cython.Build import build_ext
#adapted from https://github.com/lh3/minimap2/blob/master/setup.py
sources=['python/pys5curl.pyx',
'src/s5curl.c', 'src/curlget.c', 'src/fetch.c', 'src/index.c',]
depends=['python/pys5curl.pxd', 'python/pys5curl.h',
'src/fetch.h', 'include/slow5curl/s5curl.h', 'src/fetch.h',
'slow5lib/src/slow5_idx.h', 'slow5lib/src/slow5_extra.h',
'slow5lib/include/slow5/slow5.h']
extra_compile_args = ['-g', '-Wall', '-O2', '-std=c99', '-DSLOW5_ENABLE_MT=1' ]
# extra_compile_args = []
# os.environ["CFLAGS"] = '-g -Wall -O2 -std=c99'
if platform.system() != 'Darwin':
arch=platform.machine()
if arch in ["aarch64"]:
extra_compile_args.append('-D__ARM_NEON__')
elif arch in ["armv7l"]:
extra_compile_args.append('-mfpu=neon')
elif arch in ["x86_64"]:
extra_compile_args.extend(['-DSTREAMVBYTE_SSSE3=1', '-mssse3']) # WARNING: ancient x86_64 CPUs don't have SSSE3
# note that on macos, for now we just let it compile without simd
# include_dirs = ['include/', np.get_include(), 'thirdparty/streamvbyte/include']
libraries = ['m', 'z']
library_dirs = ['.']
# a nasty hack to provide option to build with zstd
zstd=0
try:
zstd=os.environ["PYSLOW5_ZSTD"]
except:
zstd=0
if zstd=="1":
extra_compile_args.append('-DSLOW5_USE_ZSTD=1')
libraries.append('zstd')
extensions = [Extension('pys5curl',
sources = sources,
depends = depends,
extra_compile_args = extra_compile_args,
libraries = libraries,
include_dirs = include_dirs,
library_dirs = library_dirs,
language = 'c' )]
def readme():
with open('docs/pys5curl_api/pys5curl.md') as f:
return f.read()
setup(
name = 'pys5curl',
version='1.1.0',
url = 'https://github.com/BonsonW/slow5curl',
description='slow5lib python bindings',
long_description=readme(),
long_description_content_type='text/markdown',
author='Hasindu Gamaarachchi, Sasha Jenner, James Ferguson, Bonson Wong',
author_email='bonson.ym@gmail.com',
maintainer='Bonson Wong',
maintainer_email='bonson.ym@gmail.com',
license = 'MIT',
keywords = ['nanopore','slow5','signal','slow5curl','s5curl'],
ext_modules=extensions,
cmdclass= {'build_ext': build_ext},
classifiers = [
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: MIT License',
'Programming Language :: C',
'Programming Language :: Cython',
'Programming Language :: Python :: 3',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Bio-Informatics'],
python_requires='>=3.4.3',
install_requires=["numpy"],
setup_requires=["Cython", "numpy"]
)