-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
38 lines (34 loc) · 1.1 KB
/
pyproject.toml
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "mask2bbox"
version = "0.0.23"
authors = [
{ name="Miguel A. Ibarra-Arellano", email="[email protected]"},
]
license = {text = "AGPL-3.0-or-later"}
description = "Gets the bounding boxes from a mask file."
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU Affero General Public License v3"
]
dependencies = [
"numpy",
"scikit-image",
"matplotlib",
]
keywords = ["cell", "mask", "bounding box"]
[project.scripts]
isolate-cells = "mask2bbox.scripts.isolate_cells:main"
isolate-cells-from-file = "mask2bbox.scripts.isolate_cells_from_file:main"
get-average-iou = "mask2bbox.scripts.get_average_iou:main"
[project.urls]
Homepage = "https://github.com/SchapiroLabor/mask2bbox"
Issues = "https://github.com/SchapiroLabor/mask2bbox/issues"