-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (52 loc) · 1.81 KB
/
pyproject.toml
File metadata and controls
58 lines (52 loc) · 1.81 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
[build-system]
requires = [
"setuptools>=61",
"setuptools_scm[toml]>=6.2",
"wheel"
]
build-backend = "setuptools.build_meta"
[project]
name = "napari-spotiflow"
description = "Napari plugin for Spotiflow"
readme = "README.md"
license = { text = "BSD 3-Clause License" }
authors = [
{ name = "Albert Dominguez Mantes", email = "[email protected]" },
{ name = "Martin Weigert", email = "[email protected]" }
]
requires-python = ">=3.9, <3.13"
dependencies = [
"spotiflow",
"npe2",
"napari>=0.5",
"torch<2.9.0 ; platform_system == 'Windows'" # PyQt and torch 2.9+ bug on Windows, see https://github.com/pytorch/pytorch/issues/166628
]
dynamic = ["version"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Framework :: napari",
"Topic :: Software Development :: Testing",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Operating System :: OS Independent",
"License :: OSI Approved :: BSD License"
]
[project.urls]
"Bug Tracker" = "https://github.com/weigertlab/napari-spotiflow/issues"
"Documentation" = "https://github.com/weigertlab/napari-spotiflow#README.md"
"Source Code" = "https://github.com/weigertlab/napari-spotiflow"
"User Support" = "https://github.com/weigertlab/napari-spotiflow/issues"
[project.entry-points."napari.manifest"]
napari-spotiflow = "napari_spotiflow:napari.yaml"
[tool.setuptools]
packages = ["napari_spotiflow"]
include-package-data = true
[tool.setuptools.package-data]
napari_spotiflow = ["napari.yaml", "resources/*"]
[tool.setuptools_scm]
write_to = "napari_spotiflow/_version.py"