forked from AndreasHeger/CGATReport
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
176 lines (156 loc) · 5.64 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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
########################################################################
# Import setuptools
# Use existing setuptools
try:
from setuptools import setup, find_packages
except ImportError:
# try to get via ez_setup
# ez_setup did not work on all machines tested as
# it uses curl with https protocol, which is not
# enabled in ScientificLinux
import ez_setup
ez_setup.use_setuptools()
from setuptools import setup, find_packages
import glob
import sys
import os
import re
import distutils.sysconfig
import stat
import subprocess
major, minor1, minor2, s, tmp = sys.version_info
#####################################################################
# Code to install dependencies from a repository
#####################################################################
# Modified from http://stackoverflow.com/a/9125399
#####################################################################
def which(program):
"""
Detect whether or not a program is installed.
Thanks to http://stackoverflow.com/a/377028/70191
"""
def is_exe(fpath):
return os.path.exists(fpath) and os.access(fpath, os.X_OK)
fpath, _ = os.path.split(program)
if fpath:
if is_exe(program):
return program
else:
for path in os.environ['PATH'].split(os.pathsep):
exe_file = os.path.join(path, program)
if is_exe(exe_file):
return exe_file
return None
REPO_REQUIREMENT = re.compile(
r'^-e (?P<link>(?P<vcs>git|svn|hg|bzr).+#egg=(?P<package>.+)-(?P<version>\d(?:\.\d)*))$')
HTTPS_REQUIREMENT = re.compile(
r'^-e (?P<link>.*).+#(?P<package>.+)-(?P<version>\d(?:\.\d)*)$')
install_requires = []
dependency_links = []
for requirement in (l.strip() for l in open('requires.txt')
if not l.startswith("#")):
match = REPO_REQUIREMENT.match(requirement)
if match:
assert which(match.group('vcs')) is not None, \
"VCS '%(vcs)s' must be installed in order " \
"to install %(link)s" % match.groupdict()
install_requires.append("%(package)s==%(version)s" % match.groupdict())
dependency_links.append(match.group('link'))
continue
if requirement.startswith("https"):
install_requires.append(requirement)
continue
match = HTTPS_REQUIREMENT.match(requirement)
if match:
install_requires.append(
"%(package)s>=%(version)s" % match.groupdict())
dependency_links.append(match.group('link'))
continue
install_requires.append(requirement)
if major == 2:
install_requires.extend(['matplotlib-venn>=0.5'])
elif major == 3:
pass
if major == 2 and minor1 < 5 or major < 2:
raise SystemExit("""CGATReport requires Python 2.5 or later.""")
classifiers = """
Development Status :: 4 - Beta
Intended Audience :: Science/Research
Intended Audience :: Developers
License :: OSI Approved
Programming Language :: Python
Topic :: Software Development
Topic :: Scientific/Engineering
Operating System :: Microsoft :: Windows
Operating System :: POSIX
Operating System :: Unix
Operating System :: MacOS
"""
# collect pysam version
sys.path.insert(0, "CGATReport")
import version
version = version.__version__
# external dependencies
# R
# sqlite
# R - ggplot2
# R - RSqlite
# R - gplots (for r-heatmap)
# graphvis - for dependency graphs in documentation
setup(name='CGATReport',
version=version,
description='CGATReport : a report generator in python based on sphinx',
author='Andreas Heger',
author_email='andreas.heger@gmail.com',
packages=find_packages(),
package_dir={'CGATReport': 'CGATReport'},
url="https://github.com/AndreasHeger/CGATReport/",
package_data={'CGATReport': [
'./templates/*.*',
'./templates/Makefile',
'./templates/js/*',
'./images/*']},
license="MIT",
platforms=["any"],
keywords="report generator sphinx matplotlib sql",
long_description='CGATReport : a report generator in python based '
'on sphinx',
classifiers=[_f for _f in classifiers.split("\n") if _f],
install_requires=install_requires,
zip_safe=False,
include_package_data=True,
test_suite="tests",
# python 3 conversion, requires distribute
# use_2to3 = True,
entry_points={
'console_scripts': [
'cgatreport-build = CGATReport.build:main',
'cgatreport-clean = CGATReport.clean:main',
'cgatreport-test = CGATReport.test:main',
'cgatreport-quickstart = CGATReport.quickstart:main',
'cgatreport-get = CGATReport.get:main',
'cgatreport-profile = CGATReport.profile:main',
'cgatreport-serve = CGATReport.serve:main',
],
'distutils.commands': [
'build_sphinx = cgatreport.setup_command:BuildDoc',
],
},)
# fix file permission for executables and set to "group writeable"
# also updates the "sphinx" permissions
if "install" in sys.argv:
print ("updating file permissions for scripts")
file_glob = os.path.join(
distutils.sysconfig.project_base,
"cgatreport-*")
for x in glob.glob(file_glob):
try:
os.chmod(x, os.stat(x).st_mode | stat.S_IWGRP)
except OSError:
pass
# replace the hardcoded python with /bin/env python. This
# allows using the install within a virtual environment.
print ("setting python to /bin/env python")
statement = 'perl -p -i -e "s/\/ifs\/apps\/apps\/python-2.7.1\/bin\/python2.7/\/bin\/env python/" ' + file_glob
print(statement)
subprocess.call(statement, shell=True)