-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
73 lines (66 loc) · 1.34 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
72
73
[build-system]
requires = ["setuptools >=61"]
build-backend = "setuptools.build_meta"
[project]
name = "hyve"
version = "0.1.0"
description = "Interactive and static 3D visualisation for functional brain mapping"
authors = [
{ name = "Rastko Ciric", email = "[email protected]" },
]
maintainers = [
{ name = "Rastko Ciric", email = "[email protected]" },
]
license = { file = "LICENSE" }
readme = "README.md"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: MacOS X",
]
requires-python = ">=3.10"
dependencies = [
"conveyant",
"lytemaps",
"matplotlib",
"nibabel",
"numpy",
"pandas",
"pyvista[all]",
"scipy",
"svg.py",
"templateflow",
]
[project.optional-dependencies]
test = [
"hyve-examples",
"coverage[toml]",
"pytest",
"pytest-cov",
"ruff",
"seaborn",
]
[project.urls]
"Homepage" = "https://github.com/hypercoil/hyve"
[tool.coverage.report]
show_missing = true
skip_covered = true
precision = 2
[tool.coverage.run]
branch = true
omit = [
'*test*',
'*__init__*',
]
[tool.ruff]
line-length = 79
lint.ignore = ["E731"]
lint.select = [
"E",
"F",
"W",
"I001",
]
[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["F401", "I001"]