-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
executable file
·51 lines (42 loc) · 1.23 KB
/
pyproject.toml
File metadata and controls
executable file
·51 lines (42 loc) · 1.23 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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "meta"
version = "2.0.1"
authors = [
{ name = "Iyad Ba Gari", email = "iyad.bagari@usc.edu" },
]
maintainers = [
{ name = "Iyad Ba Gari", email = "iyad.bagari@usc.edu" },
]
description = "Medial Tractography Analysis (MeTA) for along-tract analysis of white matter bundles"
readme = "README.md"
license = { file = "LICENSE.txt" }
requires-python = ">=3.11"
keywords = [
"Diffusion MRI",
"Tractography",
"White Matter Bundle",
"Medial Volume",
"Along-Tract Analysis",
"Tractometry"
]
classifiers = [
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"Operating System :: Unix"
]
[project.urls]
Repository = "https://github.com/bagari/meta"
[project.scripts]
meta = "meta.workflows.meta:run_main"
density_map = "meta.core.density:density_map"
shape_metrics = "meta.metrics.shape:shape_features"
volumetric_profile = "meta.metrics.profile:volumetric_profile"
streamlines_profile = "meta.metrics.profile:streamlines_profile"
[tool.setuptools.package-data]
meta = ["*.yaml"]
[tool.setuptools.packages.find]
include = ["meta*"]
exclude = ["src*", "environment*", "CMakeLists*", "resources*"]