generated from nipype/pydra-tasks-template
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpyproject.toml
109 lines (96 loc) · 2.73 KB
/
pyproject.toml
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "pydra-fsl"
description = "Pydra tasks package for fsl"
readme = "README.md"
requires-python = ">=3.8"
dependencies = [
"pydra >=0.22",
"fileformats >=0.8.3",
"fileformats-datascience >=0.1",
"fileformats-medimage >=0.4.1",
"fileformats-medimage-fsl",
]
license = { file = "LICENSE" }
keywords = ["pydra", "neuroimaging", "fsl"]
authors = [
{ name = "Nipype developers", email = "neuroimaging@python.org" },
{ name = "Ghislain Vaillant", email = "ghislain.vaillant@icm-institute.org" },
]
maintainers = [
{ name = "Nipype developers", email = "neuroimaging@python.org" },
{ name = "Ghislain Vaillant", email = "ghislain.vaillant@icm-institute.org" },
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering",
"Topic :: Software Development :: Libraries",
]
dynamic = ["version"]
[project.optional-dependencies]
dev = ["black", "pre-commit"]
doc = [
"packaging",
"sphinx >=2.1.2",
"sphinx_rtd_theme",
"sphinxcontrib-apidoc ~=0.3.0",
"sphinxcontrib-napoleon",
"sphinxcontrib-versioning",
"pydata-sphinx-theme >=0.13",
]
test = [
"nipype2pydra",
"pytest >= 4.4.0",
"pytest-cov",
"pytest-env",
"pytest-xdist",
"pytest-rerunfailures",
"codecov",
"fileformats-extras",
"fileformats-datascience-extras",
"fileformats-medimage-extras",
"fileformats-medimage-fsl-extras",
]
[tool.hatch.version]
source = "vcs"
[tool.hatch.build.hooks.vcs]
version-file = "pydra/tasks/fsl/_version.py"
[tool.hatch.build.targets.wheel]
packages = ["pydra"]
include-only = ["pydra/tasks/fsl"]
[tool.black]
target-version = ["py38"]
exclude = "_version.py"
[tool.codespell]
ignore-words = ".codespell-ignorewords"
[tool.flake8]
doctests = true
per-file-ignores = ["__init__.py:F401,F403"]
max-line-length = 88
select = "C,E,F,W,B,B950"
extend-ignore = ['E203', 'E501', 'E129', 'W503']
[project.urls]
Documentation = "https://github.com/nipype/pydra-tasks-fsl#readme"
Issues = "https://github.com/nipype/pydra-tasks-fsl/issues"
Source = "https://github.com/nipype/pydra-tasks-fsl"
[tool.coverage.run]
branch = true
parallel = true
[tool.coverage.report]
[tool.isort]
profile = "black"
[tool.pytest.ini_options]
minversion = "6.0"
# addopts = ["--doctest-modules", "--doctest-continue-on-failure"]
testpaths = ["pydra"]