-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.cfg
66 lines (62 loc) · 1.37 KB
/
setup.cfg
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
[metadata]
name = spotiflow
author = Albert Dominguez Mantes, Martin Weigert
author_email = [email protected], [email protected]
dynamic = ["version"]
license = BSD 3-Clause License
description = Accurate and efficient spot detection for microscopy data
long_description = file: README.md
long_description_content_type = text/markdown
classifiers =
Development Status :: 4 - Beta
Intended Audience :: Science/Research
Topic :: Scientific/Engineering
License :: OSI Approved :: BSD License
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
[options]
packages = find:
install_requires =
configargparse
crick
csbdeep
dask
lightning
networkx
numpy<2.0
pandas
Pillow
pydash
scikit_image
scipy
setuptools
scikit-image
tensorboard
tifffile
torchvision
tqdm
typing-extensions
wandb
zarr
python_requires = >=3.9, <3.13
[options.entry_points]
console_scripts =
spotiflow-predict = spotiflow.cli.predict:main
spotiflow-train = spotiflow.cli.train:main
[options.extras_require]
testing =
pytest
pytest-cov
pytest-mock
tox
docs =
sphinx
sphinx-immaterial
napari =
napari-spotiflow
starfish =
starfish
[flake8]
ignore = E116, E501, E203