generated from nipype/pydra-tasks-template
-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.cfg
82 lines (76 loc) · 1.82 KB
/
setup.cfg
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
[metadata]
author = Thomas G. Close
author_email = tom.g.close@gmail.com
description = Provides a task interface for the popular dcm2niix DICOM to NIfTI converter
long_description = file:README.md
long_description_content_type = text/markdown; variant=CommonMark
license = Apache License, 2.0
classifiers =
Development Status :: 2 - Pre-Alpha
Environment :: Console
Intended Audience :: Science/Research
License :: OSI Approved :: Apache Software License
Operating System :: MacOS :: MacOS X
Operating System :: POSIX :: Linux
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Topic :: Scientific/Engineering
[options]
python_requires = >=3.7
install_requires =
pydra >= 0.19
packages = find_namespace:
[options.packages.find]
include =
pydra.tasks.dcm2niix
pydra.tasks.dcm2niix.*
[options.extras_require]
doc =
packaging
sphinx >= 2.1.2
sphinx_rtd_theme
sphinxcontrib-apidoc ~= 0.3.0
sphinxcontrib-napoleon
sphinxcontrib-versioning
docs =
%(doc)s
test =
pytest >= 4.4.0
pytest-cov
pytest-env
pytest-xdist
pytest-rerunfailures
codecov
tests =
%(test)s
dev =
%(test)s
black
pre-commit
all =
%(doc)s
%(dev)s
[versioneer]
VCS = git
style = pep440
versionfile_source = pydra/tasks/dcm2niix/_version.py
versionfile_build = pydra/tasks/dcm2niix/_version.py
tag_prefix =
parentdir_prefix =
[tool:pytest]
addopts = --doctest-modules --doctest-report ndiff
doctest_optionflags= NORMALIZE_WHITESPACE ELLIPSIS
[flake8]
doctests = True
exclude =
**/__init__.py
*build/
pydra/tasks/dcm2niix/_version.py
versioneer.py
docs/source/conf.py
max-line-length = 88
select = C,E,F,W,B,B950
extend-ignore = E203,E501
per-file-ignores =
setup.py:F401