-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
65 lines (57 loc) · 1.51 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
""" FMRIF Tools setup script """
def main():
from setuptools import setup, find_packages
from __about__ import (
__version__,
__author__,
__email__,
__copyright__,
__license__,
__description__,
__longdesc__,
__url__,
__download__,
PACKAGE_NAME,
CLASSIFIERS,
REQUIRES,
)
pkg_data = {
'common_utils': [
'data/bids.json',
'data/3Ta.json',
'data/3Tb.json',
'data/3Tc.json',
'data/3Td.json',
# 'data/NIAAA3T.json',
# 'data/7T.json'
]
}
version = __version__
setup(
name=PACKAGE_NAME,
version=version,
description=__description__,
long_description=__longdesc__,
author=__author__,
author_email=__email__,
copyright=__copyright__,
license=__license__,
maintainer_email=__email__,
classifiers=CLASSIFIERS,
install_requires=REQUIRES,
url=__url__,
download_url=__download__,
entry_points={
'console_scripts': [
'oxy2bids=oxy2bids.gen_bids:main',
'process_biopac=biounpacker.biopac_organize:main',
'dcmexplorer=dcmexplorer.explorer:main',
'bidsmapper=bidsmapper.mapper:main'
]
},
packages=find_packages(),
package_data=pkg_data,
zip_safe=False,
)
if __name__ == '__main__':
main()