-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (49 loc) · 1.47 KB
/
pyproject.toml
File metadata and controls
53 lines (49 loc) · 1.47 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "segmentation-suite"
version = "1.1.0"
description = "MOSS - Microscopy Oriented Segmentation with Supervision. Interactive segmentation tool with U-Net training and prediction."
readme = "README.md"
license = "MIT"
requires-python = ">=3.9"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Image Processing",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"PyQt6>=6.4.0",
"numpy>=1.24.0",
"torch>=2.0.0",
"torchvision>=0.15.0",
"opencv-python>=4.7.0",
"scikit-image>=0.20.0",
"tifffile>=2023.1.0",
"imagecodecs>=2023.1.0",
"matplotlib>=3.7.0",
"tqdm>=4.65.0",
"scipy>=1.10.0",
"Pillow>=9.0.0",
"websockets>=12.0",
"pyqtgraph>=0.13.0",
"psutil>=5.9.0",
"PyOpenGL>=3.1.0",
"tensorstore>=0.1.45",
"zarr>=3.0.0",
]
[project.scripts]
moss = "segmentation_suite.launcher:main"
[project.urls]
Homepage = "https://github.com/nelsmedina/MOSS_full"
[tool.setuptools.packages.find]
where = ["."]
include = ["segmentation_suite*"]