This repository has been archived by the owner on Jan 5, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
75 lines (67 loc) · 1.97 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
74
75
[project]
name = "brainreg-napari"
authors = [
{ name = "Adam Tyson, Stephen Lenzi", email = "[email protected]" },
]
description = "Multi-atlas whole-brain microscopy registration"
readme = "README.md"
requires-python = ">=3.9.0"
dynamic = ["version"]
classifiers = [
"Development Status :: 4 - Beta",
"Topic :: Scientific/Engineering :: Image Recognition",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Operating System :: OS Independent",
]
license = { text = "BSD-3-Clause" }
dependencies = [
"napari",
"napari-plugin-engine >= 0.1.4",
"magicgui",
"qtpy",
"brainglobe-napari-io < 1",
"brainreg < 1",
"brainreg-segment < 1",
"brainglobe-utils < 1",
"pooch>1", # For sample data
]
[project.optional-dependencies]
dev = [
"check-manifest",
"gitpython",
"napari[pyqt5]",
"pre-commit",
"pytest",
"pytest-cov",
"pytest-qt",
"setuptools_scm",
"tox",
]
[project.urls]
homepage = "https://brainglobe.info"
bug_tracker = "https://github.com/brainglobe/brainreg-napari/issues"
documentation = "https://docs.brainglobe.info/brainreg-napari"
source_code = "https://github.com/brainglobe/brainreg-napari"
user_support = "https://forum.image.sc/tag/brainglobe"
twitter = "https://twitter.com/brain_globe"
[project.entry-points."napari.manifest"]
brainreg-napari = "brainreg_napari:napari.yaml"
[build-system]
requires = ["setuptools>=45", "wheel", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
[tool.black]
target-version = ['py39', 'py310', 'py311']
skip-string-normalization = false
line-length = 79
[tool.ruff]
line-length = 79
exclude = ["__init__.py", "build", ".eggs"]
select = ["I", "E", "F"]
fix = true