-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
71 lines (66 loc) · 1.78 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
69
70
71
[build-system]
requires = ["setuptools>=64.0.0", "setuptools-scm[toml]>=8", "wheel", "build"]
build-backend = "setuptools.build_meta"
[project]
name = "cvasl"
description = "A package for analysis of MRI"
authors = [
{ name = "A team including the NLeSC and the Amsterdam Medical Center", email = "[email protected]" }
]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
keywords = [
"MRI",
"harmonisation",
]
license = {file = "LICENSE"}
readme = {file = "README.md", content-type = "text/markdown"}
dynamic = ["version"]
requires-python = ">=3.10"
dependencies = [
"k_means_constrained>=0.5.2",
"kneed",
"matplotlib",
"nipy",
"numpy<2",
"pandas>=1.2.0",
"patsy",
"pyxdf",
"rpy2<3.5.17", # 3.5.17 only has a source distribution on pypi which doesn't build for some reason
"scikit-image",
"scikit-learn>=0.23.2",
"scipy>=1.5.4",
"seaborn",
"simpleitk>=2.0.1",
"tqdm>=4.59",
"umap-learn>=0.5.1",
"yellowbrick>=1.3",
]
[project.optional-dependencies]
dev = [
"ipympl",
"isort",
"nbmake",
"pycodestyle",
"pytest",
]
docs = [
"sphinx",
"piccolo_theme",
]
[project.urls]
Repository = "https://github.com/brainspinner/cvasl"
[tool.setuptools.packages.find]
include = ["cvasl", "cvasl.vendor*"]
[tool.setuptools_scm]
version_file = "cvasl/_version.py"
# default: guess-next-dev, alternatives: release-branch-semver, post-release, no-guess-dev
version_scheme = "guess-next-dev"