-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (36 loc) · 986 Bytes
/
pyproject.toml
File metadata and controls
40 lines (36 loc) · 986 Bytes
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
[build-system]
requires = ["setuptools>=40.1.0", "wheel", "cython", "toml"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["BundleParc", "scripts"]
[project]
name = "BundleParc"
authors = [
{name = "Antoine Théberge", email = "antoine.theberge@usherbrooke.ca"},
]
description = "BundleParc"
readme = "README.md"
requires-python = ">=3.10"
keywords = [""]
license = {text = "MIT"}
classifiers = [
"Programming Language :: Python :: 3",
]
dependencies = [
"lightning==2.4.0",
"torch==2.4.1",
"torchvision==0.19.1",
"timm==1.0.8",
"comet_ml",
"monai==1.3.0",
"h5py",
"nibabel",
"scilpy",
'importlib-metadata; python_version<"3.10"',
]
version = "1.0.0"
[project.scripts]
"bundleparc_train.py" = "scripts.bundleparc_train:main"
"bundleparc_predict.py" = "scripts.bundleparc_predict:main"
# ... other project metadata fields as listed in:
# https://packaging.python.org/en/latest/guides/writing-pyproject-toml/