-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
52 lines (43 loc) · 1.44 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
[tool.poetry]
name = "d2b-asl"
version = "2.0.1"
description = "Plugin for the d2b package to handle ASL data"
authors = ["Andrew Ross <[email protected]>"]
readme = "README.md"
keywords = ["neuroscience", "neuroimaging", "bids", "d2b", "plugin"]
homepage = "https://github.com/d2b-dev/d2b-asl"
repository = "https://github.com/d2b-dev/d2b-asl"
documentation = "https://github.com/d2b-dev/d2b-asl"
classifiers = [
"Intended Audience :: Healthcare Industry",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"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,<4.0"
d2b = "^1.1.4"
nibabel = "^3.2.1"
[tool.poetry.group.dev.dependencies]
black = "^24.4.2"
flake8 = "^3.9.2"
pylint = "^2.10.2"
reorder-python-imports = "^2.8.0"
pre-commit = "^2.14.1"
bump2version = "^1.0.1"
[tool.poetry.plugins.d2b]
"asl" = "d2b_asl"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"