-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
66 lines (56 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
53
54
55
56
57
58
59
60
61
62
63
64
65
[tool.poetry]
name = "clinicaio"
version = "0.2.0"
description = "A Python library for input/output management of all Clinica projects."
license = "MIT"
authors = ["ARAMIS Lab"]
maintainers = ["Clinica developers <clinica.run@gmail.com>"]
readme = "README.md"
repository = "https://github.com/aramis-lab/clinicaio.git"
packages = [{include = "clinicaio", from = "src"}]
keywords = [
"bids",
"image processing",
"machine learning",
"neuroimaging",
"neuroscience"
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Medical Science Apps.",
"Topic :: Scientific/Engineering :: Image Processing"
]
[tool.poetry.dependencies]
python = ">=3.10,<3.13"
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.3"
[tool.poetry.group.docs.dependencies]
sphinx = "^8.1.3"
sphinx-autoapi = "^3.3.3"
myst-nb = "^1.1.2"
sphinx-book-theme = "^1.1.3"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
target-version = "py310"
line-length = 88
[tool.ruff.lint]
select = [
"E",
"W",
"I001",
"PTH",
]
ignore = ["E203", "E501"]
[tool.ruff.lint.isort]
known-first-party = ["clinicaio"]
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
skip-magic-trailing-comma = false
line-ending = "auto"