-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
54 lines (47 loc) · 1.16 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "mni-to-atlas"
version = "1.1.0"
authors = [
{ name="Thomas Samuel Binns", email="t.s.binns@outlook.com" },
]
description = "A simple Python-based tool for finding brain atlas regions based on MNI coordinates."
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"numpy >= 1.22",
"matplotlib >= 3.5",
"nibabel >= 3.2"
]
[project.optional-dependencies]
dev = [
"pytest",
"coverage",
"flake8",
"black",
"codespell",
"pycodestyle",
"pydocstyle"
]
[project.urls]
"Homepage" = "https://github.com/tsbinns/mni_to_atlas"
"Bug Tracker" = "https://github.com/tsbinns/mni_to_atlas/issues"
[tool.pytest.ini_options]
filterwarnings = [
# Ignore warnings about matplotlib figures not being shown
'ignore:FigureCanvasAgg is non-interactive, and thus cannot be shown:UserWarning',
]
[tool.coverage.run]
omit = [
"tests/*",
"__init__.py"
]
[tool.pydocstyle]
match-dir = "^(?!(tests)).*"