-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
70 lines (61 loc) · 1.25 KB
/
Copy pathpyproject.toml
File metadata and controls
70 lines (61 loc) · 1.25 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
67
68
69
70
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "brainnet"
version = "0.1.0"
description = "Modular fMRI preprocessing and connectivity analysis platform."
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"Flask>=2.3,<4",
"networkx>=3.2",
"nibabel>=5.2",
"nilearn>=0.10",
"numpy>=1.26",
"openneuro-py>=2024.2.0",
"pandas>=2.0",
"plotly>=5.18",
"requests>=2.31",
"scikit-learn>=1.3",
"scipy>=1.11",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"ruff>=0.11",
]
download = [
"datalad>=0.19",
]
hmm = [
"hmmlearn>=0.3.2",
]
llm = [
"openai>=1.0",
"anthropic>=0.40",
]
viz = [
"matplotlib>=3.8",
]
docker = []
[project.scripts]
brainnet-cli = "brainnet.main:main"
brainnet-web = "brainnet.web_app:main"
[tool.setuptools]
packages = ["brainnet", "brainnet.dynamic", "brainnet.static"]
include-package-data = true
[tool.setuptools.package-dir]
brainnet = "."
"brainnet.dynamic" = "dynamic"
"brainnet.static" = "static"
[tool.setuptools.package-data]
brainnet = ["templates/*.html"]
[tool.pytest.ini_options]
addopts = "-ra"
testpaths = ["tests"]
[tool.ruff]
target-version = "py310"
line-length = 100
[tool.ruff.lint]
select = ["E9", "F63", "F7", "F82"]