-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
95 lines (86 loc) · 2.96 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
import fnmatch
import os
import sys
import versioneer
from setuptools import setup, find_packages, Extension
NUMPY_VERSION = '1.21.6'
class get_numpy_include(str):
def __str__(self):
import numpy
if numpy.__version__ != NUMPY_VERSION:
raise Exception(f'numpy compatibility error, {NUMPY_VERSION} != {numpy.__version__}')
return numpy.get_include()
external_dir = 'src/external'
bamtools_dir = os.path.join(external_dir, 'bamtools', 'src')
bamtools_api_dir = os.path.join(bamtools_dir, 'api')
bamtools_utils_dir = os.path.join(bamtools_dir, 'utils')
def find_files(directory, pattern):
for root, dirs, files in os.walk(directory):
for basename in files:
if fnmatch.fnmatch(basename, pattern):
filename = os.path.join(root, basename)
yield filename
bamtools_sources = []
bamtools_sources += list(find_files(bamtools_api_dir, '*.cpp'))
bamtools_sources += list(find_files(bamtools_utils_dir, '*.cpp'))
bamtools_sources = list(filter(lambda a: not a.endswith('win_p.cpp'), bamtools_sources))
libraries = []
extra_compile_args = ['-g']
extra_link_args = ['-g']
if 'linux' in sys.platform:
libraries.append('rt')
elif sys.platform == 'darwin':
extra_compile_args.extend(['-stdlib=libc++'])
extra_link_args.extend(['-stdlib=libc++', '-mmacosx-version-min=10.9'])
extensions = [
Extension(
name='remixt.bamreader',
sources=['remixt/bamreader.pyx', 'src/BamAlleleReader.cpp'] + bamtools_sources,
include_dirs=['src', external_dir, bamtools_dir, get_numpy_include()],
libraries=['z', 'bz2'],
extra_compile_args=extra_compile_args,
extra_link_args=extra_link_args,
language="c++",
),
Extension(
name='remixt.bpmodel',
sources=['remixt/bpmodel.pyx'],
include_dirs=[get_numpy_include()],
extra_compile_args=extra_compile_args,
extra_link_args=extra_link_args,
language="c++",
),
]
setup(
name='remixt',
packages=find_packages(),
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
description='ReMixT is a tool for joint inference of clone specific segment and breakpoint copy number',
author='Andrew McPherson',
author_email='[email protected]',
url='http://bitbucket.org/dranew/remixt',
download_url='https://bitbucket.org/dranew/remixt/get/v{}.tar.gz'.format(versioneer.get_version()),
keywords=['scientific', 'sequence analysis', 'cancer'],
classifiers=[],
ext_modules=extensions,
setup_requires=[
f'numpy=={NUMPY_VERSION}',
'setuptools>=18.0',
'cython',
],
install_requires=[
f'numpy=={NUMPY_VERSION}',
'scipy',
'pandas',
'tables',
'pypeliner',
'statsmodels',
'scikit-learn',
'pyyaml',
'matplotlib',
'seaborn',
'bokeh',
],
entry_points={'console_scripts': ['remixt = remixt.ui.main:main']},
)