Skip to content

Module dcm2bids.version⚓︎

View Source
 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
# -*- coding: utf-8 -*-

# Format expected by setup.py and doc/source/conf.py: string of form "X.Y.Z"

_version_major = 3

_version_minor = 2

_version_micro = 0

_version_extra = ''

# Construct full version string from these.

_ver = [_version_major, _version_minor, _version_micro]

if _version_extra:

    _ver.append(_version_extra)

__version__ = '.'.join(map(str, _ver))

CLASSIFIERS = [

    "Intended Audience :: Healthcare Industry",

    "Intended Audience :: Science/Research",

    "Operating System :: MacOS",

    "Operating System :: Microsoft :: Windows",

    "Operating System :: Unix",

    "Programming Language :: Python",

    "Programming Language :: Python :: 3.8",

    "Programming Language :: Python :: 3.9",

    "Programming Language :: Python :: 3.10",

    "Programming Language :: Python :: 3.11",

    "Topic :: Scientific/Engineering",

    "Topic :: Scientific/Engineering :: Bio-Informatics",

    "Topic :: Scientific/Engineering :: Medical Science Apps.",

]

# Description should be a one-liner:

description = "Reorganising NIfTI files from dcm2niix into the Brain Imaging Data Structure"

NAME = "dcm2bids"

MAINTAINER = "Arnaud Boré"

MAINTAINER_EMAIL = "arnaud.bore@gmail.com"

DESCRIPTION = description

PROJECT_URLS = {

    "Documentation": "https://unfmontreal.github.io/Dcm2Bids",

    "Source Code": "https://github.com/unfmontreal/Dcm2Bids",

}

LICENSE = "GPLv3+"

PLATFORMS = "OS Independent"

MAJOR = _version_major

MINOR = _version_minor

MICRO = _version_micro

VERSION = __version__

ENTRY_POINTS = {'console_scripts': [

    'dcm2bids=dcm2bids.cli.dcm2bids:main',

    'dcm2bids_helper=dcm2bids.cli.dcm2bids_helper:main',

    'dcm2bids_scaffold=dcm2bids.cli.dcm2bids_scaffold:main',

]}

Variables⚓︎

1
CLASSIFIERS
1
DESCRIPTION
1
ENTRY_POINTS
1
LICENSE
1
MAINTAINER
1
MAINTAINER_EMAIL
1
MAJOR
1
MICRO
1
MINOR
1
NAME
1
PLATFORMS
1
PROJECT_URLS
1
VERSION
1
description

Last update: 2024-07-26
Created: 2024-07-26