-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpyproject.toml
More file actions
executable file
·67 lines (64 loc) · 2.32 KB
/
Copy pathpyproject.toml
File metadata and controls
executable file
·67 lines (64 loc) · 2.32 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "petpal"
version = "0.6.7"
description = "PET-PAL (Positron Emission Tomography Processing and Analysis Library)"
authors = [
{name = "Noah Goldman", email = "noahg@wustl.edu"},
{name = "Bradley Judge", email = "bjudge@wustl.edu"},
{name = "Furqan Dar", email = "dar@wustl.edu"},
{name = "Kenan Oestreich", email = "kenan.oestreich@wustl.edu"}
]
requires-python = ">= 3.12" # At least Python 3.12
dependencies = [
"docker",
"numpy",
"scipy",
"numba",
"pandas",
"nibabel",
"antspyx >= 0.5",
"fslpy",
"SimpleITK",
"matplotlib",
"sphinx",
"sphinx-autoapi",
"sphinx-design",
"pydata-sphinx-theme",
"bids_validator",
"seaborn",
"networkx",
"scikit-learn",
"lmfit"
]
readme = "README.md"
classifiers = [ # These are added to PyPI package when published; Used for searching
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Topic :: Scientific/Engineering :: Image Processing",
# Python Versions (This does NOT restrict in any way; merely for PyPI searches)
"Programming Language :: Python :: 3",
]
[project.scripts]
petpal-preproc = "petpal.cli.cli_preproc:main"
petpal-tac-interpolate = "petpal.cli.cli_tac_interpolation:main"
petpal-graph-plot = "petpal.cli.cli_graphical_plots:main"
petpal-graph-analysis = "petpal.cli.cli_graphical_analysis:main"
petpal-parametric-image = "petpal.cli.cli_parametric_images:main"
petpal-tcm-fit = "petpal.cli.cli_tac_fitting:main"
petpal-rtms = "petpal.cli.cli_reference_tissue_models:main"
petpal-vat-proc = "petpal.cli.cli_vat_processing:main"
petpal-pib-proc = "petpal.cli.cli_pib_processing:main"
petpal-pvc = "petpal.cli.cli_pvc:main"
petpal-plot-tacs = "petpal.cli.cli_plot_tacs:main"
petpal-pet-stats = "petpal.cli.cli_stats:main"
petpal-decay-correct = "petpal.preproc.decay_correction:main"
petpal-moco = "petpal.preproc.motion_corr:main"
petpal-target = "petpal.preproc.motion_target:main"
petpal-register = "petpal.preproc.register:main"
[project.urls]
Repository = "https://github.com/PETPAL-WUSM/PETPAL.git"