-
Notifications
You must be signed in to change notification settings - Fork 353
/
setup.py
executable file
·28 lines (21 loc) · 955 Bytes
/
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
#!/usr/bin/env python
"""Setup file and install script for NextGen sequencing analysis scripts"""
import os
import subprocess
import setuptools
VERSION = '1.2.9'
# add bcbio version number and git commit hash of the current revision to version.py
try:
git_run = subprocess.run(['git', 'rev-parse', '--short', 'HEAD'], stdout=subprocess.PIPE)
git_run.check_returncode()
except subprocess.SubprocessError:
commit_hash = ''
else:
commit_hash = git_run.stdout.strip().decode()
here = os.path.dirname(os.path.abspath(__file__))
with open(os.path.join(here, 'bcbio', 'pipeline', 'version.py'), 'w') as version_file:
version_file.writelines([f'__version__ = "{VERSION}"\n',
f'__git_revision__ = "{commit_hash}"\n'])
# dependencies are installed via Conda from
# https://github.com/chapmanb/cloudbiolinux/blob/master/contrib/flavor/ngs_pipeline_minimal/packages-conda.yaml
setuptools.setup(version=VERSION)