forked from ME-ICA/tedana
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
80 lines (71 loc) · 2.04 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
""" tedana setup script """
def main():
""" Install entry-point """
import versioneer
from io import open
from os import path as op
from inspect import getfile, currentframe
from setuptools import setup, find_packages
from tedana.info import (
__packagename__,
__version__,
__author__,
__email__,
__maintainer__,
__license__,
__description__,
__longdesc__,
__url__,
DOWNLOAD_URL,
CLASSIFIERS,
REQUIRES,
TESTS_REQUIRES,
EXTRA_REQUIRES,
PYTHON_REQUIRES
)
pkg_data = {
'tedana': [
'tests/data/*',
]
}
root_dir = op.dirname(op.abspath(getfile(currentframe())))
version = None
cmdclass = {}
if op.isfile(op.join(root_dir, 'tedana', 'VERSION')):
with open(op.join(root_dir, 'tedana', 'VERSION')) as vfile:
version = vfile.readline().strip()
pkg_data['tedana'].insert(0, 'VERSION')
if version is None:
version = versioneer.get_version()
cmdclass = versioneer.get_cmdclass()
setup(
name=__packagename__,
version=__version__,
description=__description__,
long_description=__longdesc__,
author=__author__,
author_email=__email__,
maintainer=__maintainer__,
maintainer_email=__email__,
url=__url__,
license=__license__,
classifiers=CLASSIFIERS,
download_url=DOWNLOAD_URL,
# Dependencies handling
python_requires=PYTHON_REQUIRES,
install_requires=REQUIRES,
tests_require=TESTS_REQUIRES,
extras_require=EXTRA_REQUIRES,
entry_points={'console_scripts': [
't2smap=tedana.workflows.t2smap:_main',
'tedana=tedana.workflows.tedana:_main'
]},
packages=find_packages(exclude=("tests",)),
package_data=pkg_data,
zip_safe=False,
cmdclass=cmdclass
)
if __name__ == '__main__':
main()