-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
96 lines (83 loc) · 2.88 KB
/
setup.py
File metadata and controls
96 lines (83 loc) · 2.88 KB
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
"""eastr setup.py"""
import os
import platform
import subprocess
from setuptools import find_packages, setup, Extension
from setuptools.command.build_ext import build_ext
class CMakeExtension(Extension):
def __init__(self, name, sourcedir=''):
Extension.__init__(self, name, sources=[])
self.sourcedir = os.path.abspath(sourcedir)
class CMakeBuild(build_ext):
"""CMake build extension."""
def run(self):
extensions = ', '.join(e.name for e in self.extensions)
deps = ['cmake', 'make']
for dep in deps:
try:
subprocess.check_output([dep, '--version'])
except OSError as e:
raise RuntimeError(
f'{dep} must be installed to build the following extensions: {extensions}') from e
for ext in self.extensions:
self.build_extension(ext)
def build_extension(self, ext):
extdir = os.path.abspath(os.path.dirname(self.get_ext_fullpath(ext.name)))
extdir = os.path.join(extdir, ext.name)
cmake_args = ['-DCMAKE_LIBRARY_OUTPUT_DIRECTORY=' + extdir]
cmake_args += ['-DEXECUTABLE_OUTPUT_PATH=' + extdir]
cfg = 'Debug' if self.debug else 'Release'
build_args = ['--config', cfg]
if platform.system() == 'Windows':
cmake_args += ['-DCMAKE_GENERATOR_PLATFORM=x64']
cmake_args += ['-DCMAKE_BUILD_TYPE=' + cfg]
build_args += ['--', '/m']
else:
cmake_args += ['-DCMAKE_BUILD_TYPE=Release .' + cfg]
env = os.environ.copy()
env['CXXFLAGS'] = '{} -DVERSION_INFO=\"{}\"'.format(
env.get('CXXFLAGS', ''),
self.distribution.get_version())
if not os.path.exists(self.build_temp):
os.makedirs(self.build_temp)
subprocess.check_call(['cmake', ext.sourcedir] + cmake_args,
cwd=self.build_temp, env=env)
subprocess.check_call(['cmake', '--build', '.', *build_args],
cwd=self.build_temp)
desc = 'Tool for emending alignments of spuriously spliced transcript reads'
with open('./README.md', 'r', encoding='utf-8') as fh:
long_description = fh.read()
with open('./LICENSE', 'r', encoding='utf-8') as fh:
license_str = fh.read()
setup(
name='eastr',
version='1.1.2',
author='Ida Shinder',
author_email='[email protected]',
description=desc,
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/ishinder/EASTR',
cmdclass=dict(build_ext=CMakeBuild),
ext_modules=[CMakeExtension('eastr', 'utils')],
install_requires=[
'biopython>=1.81,<2.0',
'mappy>=2.26,<3.0',
'numpy>=1.26.1',
'pandas>=2.1.2,<2.3',
'pysam>=0.22.0,<0.23',
],
packages=find_packages(
where='src',
include=['eastr'],
),
package_dir={'': 'src'},
entry_points={
'console_scripts': [
'eastr = eastr.run_eastr:main',
]
},
python_requires='>=3.10',
license='MIT',
license_files=('LICENSE',),
)