-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
76 lines (68 loc) · 2.39 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
import os
import glob
import platform
import subprocess
from setuptools import setup, find_packages
from distutils.extension import Extension
install_requires = [line.rstrip() for line in open(os.path.join(os.path.dirname(__file__), "requirements.txt"))]
if "Darwin" == platform.system():
extra_compile_args = ["-O3", "-Xpreprocessor", "-fopenmp"]
extra_link_args = ["-lomp"]
else:
extra_compile_args = ["-O3", "-fopenmp"]
extra_link_args = ["-fopenmp"]
file_ext = "pyx" if os.environ.get("BUILD_WITH_CYTHON") else "c"
extensions = [
Extension(
name="bgzip.bgzip_utils",
sources=[f"bgzip_utils/bgzip_utils.{file_ext}"],
libraries=["z"],
extra_compile_args=extra_compile_args,
extra_link_args=extra_link_args,
)
]
if os.environ.get("BUILD_WITH_CYTHON"):
from Cython.Build import cythonize
extensions = cythonize(extensions)
with open("README.md") as fh:
long_description = fh.read()
def get_version():
filepath = os.path.join(os.path.dirname(__file__), "bgzip", "version.py")
if os.path.isfile(filepath):
# Pick up the version packaged into a wheel or source distribution
with open(filepath) as fh:
version = dict()
exec(fh.read().strip(), version)
return version['__version__']
else:
# Pick up version from git annotated tag (canonical version)
p = subprocess.run(["git", "describe", "--tags", "--match", "v*.*.*"], stdout=subprocess.PIPE)
p.check_returncode()
out = p.stdout.decode("ascii").strip()
if "-" in out:
out = out.split("-", 1)[0]
assert out.startswith("v")
return out[1:]
setup(
name='bgzip',
version=get_version(),
description='Utilities working with blocked gzip streams.',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/DataBiosphere/bgzip.git',
author='Brian Hannafious',
author_email='[email protected]',
license='MIT',
packages=find_packages(exclude=['tests']),
ext_modules=extensions,
scripts=glob.glob('scripts/*'),
zip_safe=False,
install_requires=install_requires,
platforms=['Posix', 'MacOS X'],
test_suite='test',
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.7'
]
)