-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathpyproject.toml
68 lines (60 loc) · 1.66 KB
/
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
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
68
[build-system]
requires = [
"setuptools",
"setuptools_scm",
"wheel",
]
build-backend = "setuptools.build_meta"
[project]
name = "tract_querier"
description = "WMQL: Query language for automatic tract extraction from full-brain tractographies with a registered template on top of them"
readme = "README.md"
license = {file = "license.rst"}
authors = [
{name = "Demian Wassermann"}, {email = "[email protected]"}
]
classifiers = [
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Operating System :: Unix",
"Operating System :: MacOS"
]
dependencies = [
"numpy>=1.23.0,<2.0.0",
"nibabel>=3.0.0,<4.0.0",
"vtk>8.1.0,<=9.4.0"
]
dynamic = ["version"]
requires-python = ">=3.9,<3.12"
[project.optional-dependencies]
doc = [
"numpydoc",
]
test = [
"coverage",
"pytest",
]
[project.urls]
documentation = "http://demianw.github.io/tract_querier"
homepage = "http://demianw.github.io/tract_querier"
repository = "https://github.com/demianw/tract_querier"
[project.scripts]
tract_math = "scripts.cli_tract_math:main"
tract_querier = "scripts.cli_tract_querier:main"
[tool.setuptools]
include-package-data = true
[tool.setuptools.package-data]
tract_querier = [
"data/FreeSurfer.qry",
"data/JHU_MNI_SS_WMPM_Type_I.qry",
"data/JHU_MNI_SS_WMPM_Type_II.qry",
"data/freesurfer_queries.qry",
"data/mori_queries.qry",
]
[tool.setuptools.packages]
find = {} # Scanning implicit namespaces is active by default
[tool.setuptools_scm]
write_to = "tract_querier/_version.py"