-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (48 loc) · 1.04 KB
/
pyproject.toml
File metadata and controls
55 lines (48 loc) · 1.04 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
[build-system]
build-backend = 'setuptools.build_meta'
requires = ['setuptools>=61.2']
[project]
name = 'cellSAM'
description = 'Foundation model for cell segmentation'
readme = 'README.md'
requires-python = '>=3.10'
dynamic = ['version']
dependencies = [
'numpy',
'pyyaml',
'scikit-image',
'segment_anything@git+https://github.com/facebookresearch/segment-anything.git',
'torch',
'torchvision',
'kornia',
# Model access
'requests',
'tqdm',
# Whole-slide imaging
'dask[distributed]',
'dask-image',
'scikit-learn',
]
[project.optional-dependencies]
napari = [
'pyqt6',
'napari',
'magicgui',
'qtpy'
]
[project.scripts]
cellsam = "cellSAM.cli:main"
[tool.setuptools]
zip-safe = false
include-package-data = false
packages = [
'cellSAM',
'cellSAM.AnchorDETR',
'cellSAM.AnchorDETR.models',
'cellSAM.AnchorDETR.util',
'cellSAM.napari_plugin',
]
[tool.setuptools.package-data]
cellSAM = ['modelconfig.yaml']
[tool.setuptools.dynamic.version]
attr = 'cellSAM.__version__'