forked from Neuro-iX/SimCortex
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
63 lines (52 loc) · 1.26 KB
/
Copy pathpyproject.toml
File metadata and controls
63 lines (52 loc) · 1.26 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
[build-system]
requires = ["setuptools>=77", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "simcortex"
version = "2.0.0"
description = "SimCortex is a modular framework for cortical surface reconstruction."
readme = "README.md"
requires-python = ">=3.10"
license = "Apache-2.0"
license-files = ["LICENSE"]
authors = [
{ name = "Kaveh Moradkhani" },
{ name = "Sylvain Bouix" }
]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
]
dependencies = [
"typer>=0.12",
"numpy>=1.24",
"pandas>=2.0",
"nibabel>=5.2",
"hydra-core>=1.3",
"omegaconf>=2.3",
"tqdm>=4.66",
"tensorboard>=2.14",
"trimesh>=4.0",
"openpyxl>=3.1",
]
[project.urls]
"Source Code" = "https://github.com/Neuro-iX/SimCortex"
"Lab Page" = "https://github.com/Neuro-iX"
[project.optional-dependencies]
preproc = ["antspyx>=0.6.1"]
seg = ["monai>=1.3"]
initsurf = ["python-fcl"]
deform-metrics = ["python-fcl", "pymeshlab"]
torch = ["torch>=2.0"]
[project.scripts]
simcortex = "simcortex.cli.main:app"
[tool.setuptools]
package-dir = {"" = "src"}
include-package-data = true
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
simcortex = [
"configs/**/*.yaml",
"utils/critical186LUT.raw.gz",
]