-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
78 lines (71 loc) · 1.45 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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "brain-cockpit"
authors = [
{name = "Alexis Thual", email = "[email protected]"},
]
description = "A web-based viewer to explore large fMRI datasets"
readme = "README.md"
keywords = ["visualisation", "fMRI", "brain", "web-app"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dynamic = ["version"]
requires-python = ">=3.7"
dependencies = [
"joblib>=1.2.0",
"flask",
"flask-cors",
"fugw",
"gltflib",
"nibabel",
"nilearn",
"numpy>=1.20",
"pandas",
"python-dotenv",
"pyyaml",
"orjson",
"rich>=13.3.1",
"scikit-learn",
"scipy",
"simplejson",
"torch",
"waitress",
]
[project.optional-dependencies]
dev = [
"black",
"brain-cockpit[doc]",
"brain-cockpit[test]",
"pre-commit",
]
doc = [
"furo>=2022.12.07",
"m2r2",
"myst_parser",
"numpydoc",
"sphinx==5.3.0",
"sphinx-copybutton",
"sphinx-gallery>=0.11.1",
]
test = [
"flake8",
"pyproject-flake8",
"pytest",
]
[project.urls]
homepage = "https://github.com/alexisthual/brain-cockpit"
repository = "https://github.com/alexisthual/brain-cockpit.git"
[tool.black]
line-length = 79
preview = true
[tool.flake8]
ignore = ["E203", "W503"]
[tool.setuptools.dynamic]
version = {attr = "brain_cockpit.__version__"}
[tool.setuptools.packages.find]
where = ["api/src"]