-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
65 lines (59 loc) · 1.35 KB
/
pyproject.toml
File metadata and controls
65 lines (59 loc) · 1.35 KB
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "neuroglobe"
version = "4.0.0"
description = "Advanced 3D Viewer for Allen Brain Atlas Connectivity"
readme = "README.md"
requires-python = ">=3.10"
license = {file = "LICENSE"}
authors = [
{name = "Dr. David Ganem"}
]
keywords = ["neuroscience", "atlas", "brainrender", "vtk"]
# Common dependencies
dependencies = [
"numpy>=1.23.5",
"pandas>=2.3.3",
"pyyaml>=6.0",
"customtkinter",
"jupyter",
"ipykernel",
"pytest",
]
[project.optional-dependencies]
# Dependencies for the Mining Pipeline (envs/allensdk.yml)
miner = [
"allensdk>=2.16.2",
"tables>=3.9.2",
"SimpleITK>=2.0.0",
]
# Dependencies for the 3D Viewer (envs/brainglobe_render.yml)
viewer = [
"brainrender>=2.1.16",
"vedo>=2025.5.4",
"brainglobe-atlasapi>=2.1.0",
"brainglobe-utils>=0.6.3",
"brainglobe-space>=1.0.3",
"morphapi",
"napari>=0.6.6",
"vtk>=9.2.6",
"k3d>=2.17.0",
"matplotlib>=3.5.0",
"seaborn>=0.13.2",
"scipy>=1.15.2",
"rich>=14.2.0",
"typer>=0.20.0",
"dearpygui>=1.6.0",
]
[tool.setuptools.packages.find]
where = ["."]
include = ["src*"]
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-v --tb=short"
testpaths = ["tests"]
python_files = "test_*.py"
log_cli = true
log_cli_level = "INFO"