-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
50 lines (42 loc) · 1.57 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
[tool.poetry]
name = "nipype-generate-fieldmaps"
version = "0.2.4"
description = "Nipype workflow to generate fieldmaps from EPI acquisitions with differing phase-encoding directions"
authors = ["Andrew Ross <andrew.ross.mail@gmail.com>"]
readme = "README.md"
keywords = ["neuroscience", "neuroimaging", "nipype", "mri", "fieldmaps", 'fsl']
homepage = "https://github.com/andrewrosss/nipype-generate-fieldmaps"
repository = "https://github.com/andrewrosss/nipype-generate-fieldmaps"
documentation = "https://github.com/andrewrosss/nipype-generate-fieldmaps"
classifiers = [
"Intended Audience :: Healthcare Industry",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Operating System :: MacOS",
"Operating System :: Unix",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Scientific/Engineering :: Medical Science Apps.",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities",
"Typing :: Typed",
]
[tool.poetry.dependencies]
python = "^3.8"
nipype = "^1.1.0"
nibabel = "^3.0.0"
[tool.poetry.dev-dependencies]
black = "^21.12b0"
flake8 = "^4.0.1"
pylint = "^2.12.2"
reorder-python-imports = "^2.6.0"
bump2version = "^1.0.1"
pre-commit = "^2.16.0"
[tool.poetry.scripts]
nipype-generate-fieldmaps = "nipype_generate_fieldmaps:cli"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"