-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
113 lines (105 loc) · 2.59 KB
/
pyproject.toml
File metadata and controls
113 lines (105 loc) · 2.59 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pysnt"
version = "0.0.1"
authors = [
{name = "SNT contributors"},
]
description = "Python interface for SNT, the ImageJ framework for neuroanatomy"
readme = "README.md"
license = {text = "GPL-3.0-or-later"}
requires-python = ">=3.8"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"scyjava>=1.12.1",
"pyimagej>=1.7.0",
"JPype1>=1.5.0",
"numpy>=2.3.3",
"matplotlib>=3.10.7",
"xarray>=2025.10.1",
]
[project.optional-dependencies]
# Enhanced display and conversion features
display = [
"pandas>=2.3.3",
"networkx>=3.0",
"cairosvg>=2.8.2",
"PyMuPDF>=1.26.3",
]
# Interactive GUI features
gui = [
"pandasgui>=0.2.15",
"ipykernel>=7.1.0",
"pyobjc-core>=11.1; sys_platform == 'darwin'",
"pyobjc-framework-cocoa>=11.1; sys_platform == 'darwin'",
]
# Optional Java auto-install support
java = [
"install-jdk>=1.1.0",
]
# Optional OME-Zarr support
zarr = [
"zarr>=2.10.0",
"fsspec>=2023.1.0",
]
# All optional features
all = [
"pandas>=2.3.3",
"networkx>=3.0",
"cairosvg>=2.8.2",
"PyMuPDF>=1.26.3",
"pandasgui>=0.2.15",
"ipykernel>=7.1.0",
"pyobjc-core>=11.1; sys_platform == 'darwin'",
"pyobjc-framework-cocoa>=11.1; sys_platform == 'darwin'",
"install-jdk>=1.1.0",
"zarr>=2.10.0",
"fsspec>=2023.1.0",
]
# Development dependencies
dev = [
"pytest>=6.0",
"pytest-cov",
"black",
"flake8",
"mypy",
"isort",
]
# Documentation dependencies
docs = [
"sphinx>=5.0,<8.0",
"sphinx-design",
"myst-nb>=0.15.0,<1.4.0",
"sphinx-copybutton",
"pydata-sphinx-theme",
]
[project.scripts]
pysnt = "pysnt.__main__:main"
[project.urls]
Homepage = "https://github.com/morphonets/pysnt"
Repository = "https://github.com/morphonets/pysnt"
Documentation = "https://pysnt.readthedocs.io"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-dir]
"" = "src"
[tool.black]
line-length = 88
target-version = ['py38']
[tool.mypy]
python_version = "3.8"
warn_return_any = true
warn_unused_configs = true