-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
63 lines (54 loc) · 1.35 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
[build-system]
requires = [
"setuptools >= 61.0.0",
"wheel",
"setuptools_scm[toml] >= 6.2"
]
build-backend = "setuptools.build_meta"
[project]
name = "parcmerge"
description = "merge two distinct nifti parcellations"
readme = "README.md"
requires-python = ">=3.7"
license = {file = "LICENSE.md"}
authors = [
{email = "[email protected]"},
{name = "Leonard Sasse"},
]
keywords = [
"neuroimaging",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"License :: OSI Approved",
"Natural Language :: English",
"Topic :: Software Development",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
]
dependencies = [
"nilearn>=0.9.0,<1.0",
]
dynamic = ["version"]
[project.urls]
repository = "https://github.com/LeSasse/merge_nii_parcs"
[project.scripts]
parcmerge = "parcmerge.parcmerge:main"
[project.optional-dependencies]
dev = ["tox"]
################
# Tool configs #
################
[tool.setuptools]
packages = ["parcmerge"]
[tool.setuptools_scm]
version_scheme = "python-simplified-semver"
local_scheme = "no-local-version"
write_to = "parcmerge/_version.py"
[tool.black]
line-length = 79
target-version = ["py37"]