-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
106 lines (100 loc) · 2.18 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
105
106
[project]
name = "mia_processes"
version = "2.7.1"
authors = [
{name = "Populse team", email = "[email protected]"},
]
description = "mia_processes"
readme = "README.md"
requires-python = ">=3.9"
license = {text = "CeCILL-B"}
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"boto",
"cmp",
"cfflib",
"dipy",
"nibabel",
"nilearn",
"nipy",
"nipype",
"nitime",
"nitransforms",
"niworkflows",
"numpy",
"openpyxl",
"paramiko",
"populse-db >= 2.5.0, < 3.0.0",
"populse_mia >= 2.5.0, < 3.0.0",
"pyxnat",
"reportlab",
"scipy",
"statsmodels",
"templateflow",
"torch",
"vtk",
]
[project.optional-dependencies]
doc = [
"sphinx >=1.0",
]
[project.urls]
homepage = "http://populse.github.io/mia_processes/"
repository = "https://github.com/populse/mia_processes"
[tool.black]
line-length = 79
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
'''
[tool.isort]
atomic = true
profile = "black"
line_length = 79
skip_gitignore = true
#known_first_party = ['mia_processes']
#[tool.coverage.run]
#omit = [
# "populse_mia/user_interface/data_viewer/anatomist_2/*",
# "populse_mia/user_interface/data_viewer/anatomist/*",
# "processes/*"
#]
[tool.interrogate]
ignore-init-method = true
ignore-init-module = false
ignore-magic = false
ignore-semiprivate = false
ignore-private = false
ignore-property-decorators = false
ignore-module = false
ignore-nested-functions = false
ignore-nested-classes = true
ignore-setters = false
fail-under = 100
exclude = ["setup.py", "docs", "build", "processes"]
verbose = 2
quiet = false
color = true
omit-covered-files = false