forked from gmilab/seegloc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
38 lines (34 loc) · 908 Bytes
/
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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[tool.setuptools.package-data]
seegloc = ["seegloc/atlases/*"]
[project]
name = "seegloc"
authors = [
{name = "Simeon Wong", email = "[email protected]"},
{name = "George Ibrahim", email = "[email protected]"},
]
description = "My package description"
readme = "README.md"
requires-python = ">=3.7"
keywords = ["one", "two"]
license = {text = "MIT"}
dependencies = [
"fslpy",
"scikit-image",
"pandas",
"numpy",
"pyvista",
"nibabel",
"imageio-ffmpeg",
"tqdm",
]
dynamic = ["version"]
[tool.setuptools_scm]
[project.scripts]
seegloc_autolabel = "seegloc.autolabel:main"
seegloc_extrapolate = "seegloc.extrapolate:main"
seegloc_coreg = "seegloc.coreg:pipeline_full"
seegloc_genqc = "seegloc.coreg:pipeline_qconly"
seegloc_view3d = "seegloc.view3d:main"