forked from nipy/nipype
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·155 lines (130 loc) · 5.79 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
#!/usr/bin/env python
# emacs: -*- mode: python; py-indent-offset: 4; indent-tabs-mode: nil -*-
# vi: set ft=python sts=4 ts=4 sw=4 et:
"""Nipype : Neuroimaging in Python pipelines and interfaces package.
Nipype intends to create python interfaces to other neuroimaging
packages and create an API for specifying a full analysis pipeline in
python.
Much of the machinery at the beginning of this file has been copied over from
nibabel denoted by ## START - COPIED FROM NIBABEL and a corresponding ## END
"""
# Build helper
import sys
from glob import glob
import os
from os.path import join as pjoin
from io import open
# Commit hash writing, and dependency checking
from setuptools.command.build_py import build_py
PY3 = sys.version_info[0] >= 3
class BuildWithCommitInfoCommand(build_py):
""" Return extended build command class for recording commit
The extended command tries to run git to find the current commit, getting
the empty string if it fails. It then writes the commit hash into a file
in the `pkg_dir` path, named ``COMMIT_INFO.txt``.
In due course this information can be used by the package after it is
installed, to tell you what commit it was installed from if known.
To make use of this system, you need a package with a COMMIT_INFO.txt file -
e.g. ``myproject/COMMIT_INFO.txt`` - that might well look like this::
# This is an ini file that may contain information about the code state
[commit hash]
# The line below may contain a valid hash if it has been substituted during 'git archive'
archive_subst_hash=$Format:%h$
# This line may be modified by the install process
install_hash=
The COMMIT_INFO file above is also designed to be used with git substitution
- so you probably also want a ``.gitattributes`` file in the root directory
of your working tree that contains something like this::
myproject/COMMIT_INFO.txt export-subst
That will cause the ``COMMIT_INFO.txt`` file to get filled in by ``git
archive`` - useful in case someone makes such an archive - for example with
via the github 'download source' button.
Although all the above will work as is, you might consider having something
like a ``get_info()`` function in your package to display the commit
information at the terminal. See the ``pkg_info.py`` module in the nipy
package for an example.
"""
def run(self):
import subprocess
import configparser
build_py.run(self)
proc = subprocess.Popen('git rev-parse --short HEAD',
stdout=subprocess.PIPE,
stderr=subprocess.PIPE,
shell=True)
repo_commit, _ = proc.communicate()
# Fix for python 3
if PY3:
repo_commit = repo_commit.decode()
# We write the installation commit even if it's empty
if PY3:
cfg_parser = configparser.RawConfigParser()
else:
cfg_parser = configparser.ConfigParser()
cfg_parser.read(pjoin('nipype', 'COMMIT_INFO.txt'))
cfg_parser.set('commit hash', 'install_hash', repo_commit.strip())
out_pth = pjoin(self.build_lib, 'nipype', 'COMMIT_INFO.txt')
if PY3:
cfg_parser.write(open(out_pth, 'wt'))
else:
cfg_parser.write(open(out_pth, 'wb'))
def main():
from setuptools import setup, find_packages
thispath, _ = os.path.split(__file__)
testdatafiles = [pjoin('testing', 'data', val)
for val in os.listdir(pjoin(thispath, 'nipype', 'testing', 'data'))
if not os.path.isdir(pjoin(thispath, 'nipype', 'testing', 'data', val))]
testdatafiles += [
pjoin('testing', 'data', 'dicomdir', '*'),
pjoin('testing', 'data', 'bedpostxout', '*'),
pjoin('testing', 'data', 'tbss_dir', '*'),
pjoin('testing', 'data', 'brukerdir', '*'),
pjoin('testing', 'data', 'brukerdir', 'pdata', '*'),
pjoin('testing', 'data', 'brukerdir', 'pdata', '1', '*'),
pjoin('workflows', 'data', '*'),
pjoin('pipeline', 'engine', 'report_template.html'),
pjoin('external', 'd3.js'),
pjoin('interfaces', 'script_templates', '*'),
pjoin('interfaces', 'tests', 'realign_json.json'),
pjoin('interfaces', 'tests', 'use_resources'),
]
# Python 3: use a locals dictionary
# http://stackoverflow.com/a/1463370/6820620
ldict = locals()
# Get version and release info, which is all stored in nipype/info.py
ver_file = os.path.join(thispath, 'nipype', 'info.py')
with open(ver_file) as infofile:
exec(infofile.read(), globals(), ldict)
SETUP_REQUIRES = ['future']
if sys.version_info <= (3, 4):
SETUP_REQUIRES.append('configparser')
setup(
name=ldict['NAME'],
maintainer=ldict['MAINTAINER'],
maintainer_email=ldict['MAINTAINER_EMAIL'],
description=ldict['DESCRIPTION'],
long_description=ldict['LONG_DESCRIPTION'],
url=ldict['URL'],
download_url=ldict['DOWNLOAD_URL'],
license=ldict['LICENSE'],
classifiers=ldict['CLASSIFIERS'],
author=ldict['AUTHOR'],
author_email=ldict['AUTHOR_EMAIL'],
platforms=ldict['PLATFORMS'],
version=ldict['VERSION'],
install_requires=ldict['REQUIRES'],
setup_requires=SETUP_REQUIRES,
provides=ldict['PROVIDES'],
packages=find_packages(),
package_data={'nipype': testdatafiles},
cmdclass={'build_py': BuildWithCommitInfoCommand},
tests_require=ldict['TESTS_REQUIRES'],
zip_safe=False,
extras_require=ldict['EXTRA_REQUIRES'],
entry_points='''
[console_scripts]
nipypecli=nipype.scripts.cli:cli
'''
)
if __name__ == "__main__":
main()