forked from nipy/heudiconv
-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
executable file
·55 lines (43 loc) · 1.61 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
#!/usr/bin/env python
# ## ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ##
#
# See COPYING file distributed along with the Heudiconv package for the
# copyright and license terms.
#
# ## ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ##
def main():
import os.path as op
from setuptools import findall, setup, find_packages
thispath = op.dirname(__file__)
ldict = locals()
# Get version and release info, which is all stored in heudiconv/info.py
info_file = op.join(thispath, 'heudiconv', 'info.py')
with open(info_file) as infofile:
exec(infofile.read(), globals(), ldict)
def findsome(subdir, extensions):
"""Find files under subdir having specified extensions
Leading directory (datalad) gets stripped
"""
return [
f.split(op.sep, 1)[1] for f in findall(subdir)
if op.splitext(f)[-1].lstrip('.') in extensions
]
setup(
name=ldict['__packagename__'],
author=ldict['__author__'],
#author_email="team@???",
version=ldict['__version__'],
description=ldict['__description__'],
long_description=ldict['__longdesc__'],
entry_points={'console_scripts': [
'heudiconv=heudiconv.cli.run:main',
'heudiconv_monitor=heudiconv.cli.monitor:main',
]},
install_requires=ldict['REQUIRES'],
extras_require=ldict['EXTRA_REQUIRES'],
package_data={
'heudiconv_heuristics':
findsome('heuristics', ('py'))},
)
if __name__ == '__main__':
main()