forked from ReproNim/reproman
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·171 lines (154 loc) · 5.25 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
#!/usr/bin/env python
# ## ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ##
#
# See COPYING file distributed along with the ReproMan package for the
# copyright and license terms.
#
# ## ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ##
import platform
from os.path import sep as pathsep
from os.path import join as opj
from os.path import splitext
from os.path import dirname
from setuptools import findall
from setuptools import setup, find_packages
# manpage build imports
from setup_support import BuildManPage
from setup_support import BuildRSTExamplesFromScripts
# from setup_support import BuildConfigInfo
from setup_support import get_version
def findsome(subdir, extensions):
"""Find files under subdir having specified extensions
Leading directory (reproman) gets stripped
"""
return [
f.split(pathsep, 1)[1] for f in findall(opj('reproman', subdir))
if splitext(f)[-1].lstrip('.') in extensions
]
# reproman version to be installed
version = get_version()
# Only recentish versions of find_packages support include
# reproman_pkgs = find_packages('.', include=['reproman*'])
# so we will filter manually for maximal compatibility
reproman_pkgs = [pkg for pkg in find_packages('.') if pkg.startswith('reproman')]
requires = {
'core': [
'appdirs',
'attrs>=16.3.0',
'humanize',
'pyyaml',
'tqdm',
'fabric>=2.3.1',
'cryptography>=1.5',
'pytz',
'scp',
'pycrypto',
'pyOpenSSL==16.2.0',
'requests',
'reprozip; sys_platform=="linux" or sys_platform=="linux2"',
'rpaths',
'jinja2',
],
'debian': [
'python-debian',
# on Debian systems will come via apt
#'python-apt>=0.8.9.1',
# Origin.codename was introduced in 0.8.9
# unfortunately not on pypi but needed by python-apt
#'http://archive.ubuntu.com/ubuntu/pool/main/p/python-apt/python-apt_0.9.3.5.tar.xz'
'chardet', # python-debian misses dependency on it
],
'docker': [
'docker>=3.0.0',
'dockerpty',
],
'aws': [
'boto3',
],
'meta': [
'rdflib',
],
'tests': [
'pytest>=3.3.0',
]
}
requires['full'] = sum(list(requires.values()), [])
# Now add additional ones useful for development
requires.update({
'devel-docs': [
# used for converting README.md -> .rst for long_description
# TODO: enable whenever we are ready! otherwise requires installation
# of pandoc first via apt-get
# 'pypandoc',
# Documentation
'sphinx',
'sphinx-rtd-theme',
],
'devel-utils': [
'line-profiler',
# necessary for accessing SecretStorage keyring (system wide Gnome
# keyring) but not installable on travis, IIRC since it needs connectivity
# to the dbus whenever installed or smth like that, thus disabled here
# but you might need it
# 'dbus-python',
],
'devel-neuroimaging': [
# Specifically needed for tests here (e.g. example scripts testing)
'nibabel',
]
})
requires['devel'] = sum(list(requires.values()), [])
# let's not build manpages and examples automatically (gh-896)
# configure additional command for custom build steps
#class DataladBuild(build_py):
# def run(self):
# self.run_command('build_manpage')
# self.run_command('build_examples')
# build_py.run(self)
cmdclass = {
'build_manpage': BuildManPage,
# 'build_examples': BuildRSTExamplesFromScripts,
# 'build_cfginfo': BuildConfigInfo,
# 'build_py': DataladBuild
}
# PyPI doesn't render markdown yet. Workaround for a sane appearance
# https://github.com/pypa/pypi-legacy/issues/148#issuecomment-227757822
README = opj(dirname(__file__), 'README.md')
try:
import pypandoc
long_description = pypandoc.convert(README, 'rst')
except ImportError:
long_description = open(README).read()
setup(
name="reproman",
author="The ReproMan Team and Contributors",
author_email="[email protected]",
version=version,
description="Neuroimaging Computational Environments Manager",
long_description=long_description,
packages=reproman_pkgs,
install_requires=requires['core'],
extras_require=requires,
entry_points={
'console_scripts': [
'reproman=reproman.cmdline.main:main',
],
},
cmdclass=cmdclass,
package_data={
'reproman':
findsome(opj("distributions", "tests", "files"), {"yml", "yaml"}) +
findsome("examples", {"trig", "yml", "yaml"}) +
findsome(opj("formats", "tests", "files"), {"yml", "yaml"}) +
findsome(opj("interface"), {"shim"}) +
findsome(opj("interface", "tests"), {"yml", "yaml"}) +
findsome(opj("interface", "tests", "files"), {"yml", "yaml"}) +
findsome(opj("support", "jobs", "job_templates", "runscript"),
{"sh"}) +
findsome(opj("support", "jobs", "job_templates", "runscript", "includes"),
{"sh"}) +
findsome(opj("support", "jobs", "job_templates", "submission"),
{"template"}) +
findsome(opj("tests", "files"), {"cfg"})
}
)