forked from nipype/pydra
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
104 lines (96 loc) · 2.25 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
[build-system]
requires = ["flit_scm"]
build-backend = "flit_scm:buildapi"
[project]
name = "pydra"
description = "Pydra dataflow engine"
readme = "README.rst"
requires-python = ">=3.8"
dependencies = [
"attrs >=19.1.0",
"cloudpickle >=2.0.0",
"etelemetry >=0.2.2",
"filelock >=3.0.0",
"importlib_resources >=5.7; python_version < '3.11'",
]
license = {file = "LICENSE"}
authors = [
{name = "Nipype developers", email = "[email protected]"},
]
maintainers = [
{name = "Nipype developers", email = "[email protected]"},
]
keywords = [
"brainweb",
"dataflow",
"neuroimaging",
"pydra",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"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",
]
dynamic = ["version"]
[project.optional-dependencies]
dask = [
"dask",
"distributed",
]
dev = [
"black",
"pre-commit",
"pydra[test]",
]
doc = [
"packaging",
"sphinx >=2.1.2",
"sphinx_rtd_theme",
"sphinxcontrib-apidoc ~=0.3.0",
"sphinxcontrib-versioning",
]
test = [
"pytest >=6.2.5",
"pytest-cov",
"pytest-env",
"pytest-xdist <2.0",
"pytest-rerunfailures",
"pytest-timeout",
"codecov",
"numpy",
"pyld",
"psutil",
"python-dateutil",
"tornado",
"boutiques",
"pympler",
]
# Aliases
tests = ["pydra[test]"]
docs = ["pydra[doc]"]
all = ["pydra[doc,dev]"]
[project.urls]
documentation = "https://nipype.github.io/pydra/"
homepage = "https://nipype.github.io/pydra/"
repository = "https://github.com/nipype/pydra.git"
[tool.flit.module]
name = "pydra"
[tool.flit.sdist]
exclude = [".gitignore"]
[tool.setuptools_scm]
write_to = "pydra/_version.py"
[tool.black]
target-version = ['py37', 'py38']
exclude = "pydra/_version.py"
[tool.codespell]
ignore-words-list = "nd,afile"