-
Notifications
You must be signed in to change notification settings - Fork 13
/
pyproject.toml
62 lines (52 loc) · 1.19 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
[build-system]
requires = [
"setuptools", "wheel"
]
build-backend = "setuptools.build_meta"
[project]
dynamic = ['version']
name = "macapype"
maintainers = [{name = "Macapype developers" }]
authors= [{name = "Macatools team"}]
description= "Pipeline for anatomic processing for macaque "
readme = {content-type = "text/markdown", file = "README.md"}
requires-python = ">= 3.10"
license = {text = "BSD-3-Clause"}
dependencies = [
"nipype",
"rdflib==6.3.1",
"pandas==2.2.3",
"matplotlib",
"nilearn",
"networkx",
"pybids",
"scikit-image",
"nibabel",
"numpy",
"SimpleITK"
]
[project.optional-dependencies]
# Dependencies for building the documentation
doc_deps = [
"sphinx",
"sphinx-gallery",
"sphinx_bootstrap_theme",
"numpydoc",
"sphinxcontrib-fulltoc"
]
# Dependencies for test
test_deps = [
"pytest",
"pytest-cov",
"codecov",
]
flake_deps = [
"flake8"
]
# real calls
test=["macapype[test_deps, flake_deps]"]
doc=["macapype[flake_deps, test_deps, doc_deps]"]
[project.scripts]
segment_pnh = "workflows.segment_pnh:main"
[tool.setuptools.packages]
find = {} # Scanning implicit namespaces is active by default