-
Notifications
You must be signed in to change notification settings - Fork 33
/
pyproject.toml
67 lines (62 loc) · 1.68 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
[build-system]
requires = [
"cython>=3.0.10",
"numpy>=1.24.4,<2.0.0",
"setuptools>=69.2.0"
]
build-backend = "setuptools.build_meta"
[project]
name = "dmri-commit"
version = "2.3.1"
dependencies = [
"dmri-amico>=2.0.1",
"dmri-dicelib>=1.1.0",
"numpy>=1.24.4,<2.0.0",
"scipy>=1.10.1"
]
requires-python = ">=3.8"
authors = [
{name = "Alessandro Daducci", email = "[email protected]"}
]
maintainers = [
{name = "DICE lab", email = "[email protected]"}
]
description = "Convex Optimization Modeling for Microstructure Informed Tractography (COMMIT)"
readme = "README.md"
license = {file = "LICENSE"}
keywords = [
"Neuroimaging"
]
classifiers = [
"Intended Audience :: Science/Research",
"License :: Other/Proprietary License",
"Programming Language :: C++",
"Programming Language :: Cython",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12"
]
[project.urls]
Homepage = "https://github.com/daducci/COMMIT.git"
Documentation = "https://github.com/daducci/COMMIT/wiki"
Repository = "https://github.com/daducci/COMMIT.git"
Issues = "https://github.com/daducci/COMMIT/issues"
Changelog = "https://github.com/daducci/COMMIT/blob/master/CHANGELOG.md"
[tool.setuptools]
packages = [
"commit",
"commit.operator"
]
include-package-data = false
[tool.setuptools.package-data]
"commit.operator" = [
"*.c",
"*.pyx",
"*.pyxbld"
]
[tool.cibuildwheel]
build-verbosity = 3