-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
66 lines (60 loc) · 1.79 KB
/
pyproject.toml
File metadata and controls
66 lines (60 loc) · 1.79 KB
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "opticonn"
version = "0.1.0"
description = "OptiConn: Unbiased, modality-agnostic connectomics optimization and selection"
readme = "README.md"
authors = [
{ name = "Karl Koschutnig" }
]
license = { file = "LICENSE" }
requires-python = ">=3.9"
keywords = ["connectomics", "neuroimaging", "optimization", "QA", "tractography"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"numpy",
"pandas",
"scipy",
"networkx",
"matplotlib",
"seaborn",
"statsmodels",
"jsonschema",
"scikit-optimize",
"scikit-learn",
"tqdm",
]
[project.urls]
Homepage = "https://github.com/MRI-Lab-Graz/braingraph-pipeline"
Issues = "https://github.com/MRI-Lab-Graz/braingraph-pipeline/issues"
[project.scripts]
opticonn = "scripts.opticonn_hub:main"
[project.optional-dependencies]
# Development extras: optional packages for advanced analysis and notebooks
dev = [
"jupyter>=1.0.0",
"ipywidgets>=8.0.0",
"dipy>=1.5.0",
"nibabel>=5.0.0",
"nilearn>=0.9.0",
"openpyxl>=3.0.0",
"xlsxwriter>=3.0.0",
"pytest>=7.0.0",
]
[tool.setuptools]
packages = ["scripts", "scripts.subcommands", "scripts.utils"]
py-modules = ["opticonn"]
[tool.mypy]
ignore_missing_imports = true
# This repository is primarily a CLI/scripts codebase and is not fully typed.
# Keep MyPy available for spot-checking, but do not fail CI/release gates on it.
ignore_errors = true
# MyPy can report duplicate-module errors for same-named scripts in multiple folders.
# Exclude the DSI Studio helper script (kept for CLI tooling) from type checking.
exclude = "^(archive/|dsi_studio_tools/(validate_setup|extract_connectivity_matrices)\\.py$)"