generated from nipype/pydra-tasks-template
-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
64 lines (57 loc) · 1.38 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
[build-system]
requires = ["flit_scm"]
build-backend = "flit_scm:buildapi"
[project]
name = "pydra-nipype1"
description = "Tools for importing nipype 1.x interfaces into Pydra"
readme = "README.md"
requires-python = ">=3.8"
dependencies = [
"pydra >=0.6.2",
"nipype",
"attrs >=21.3.0",
]
license = {file = "LICENSE"}
authors = [
{name = "Chris Markiewicz", email = "markiewicz@stanford.edu"},
]
maintainers = [
{name = "Nipype developers", email = "neuroimaging@python.org"},
]
keywords = [
"pydra",
"nipype",
]
classifiers = [
"Development Status :: 4 - Beta",
"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",
"Topic :: Scientific/Engineering",
]
dynamic = ["version"]
[project.optional-dependencies]
dev = [
"black",
"pre-commit",
]
test = [
"pytest>=4.4.0",
"pytest-cov",
]
[project.urls]
homepage = "https://github.com/nipype/pydra-nipype1"
repository = "https://github.com/nipype/pydra-nipype1"
[tool.flit.module]
name = "pydra.tasks.nipype1"
[tool.flit.sdist]
exclude = [".gitignore"]
[tool.setuptools_scm]
write_to = "pydra/tasks/nipype1/_version.py"
[tool.black]
line-length = 99
target-version = ["py37"]
exclude = "_version.py"