-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
59 lines (49 loc) · 1.55 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
[project]
name = "mouselungseg"
dynamic = ["version"]
description = "YoloV8 model for the segmentation of the lungs in mice CT scans."
readme = "README.md"
requires-python = ">=3.9"
license = {file = "LICENSE"}
authors = [{ name = "Mallory Wittwer", email = "mallory.wittwer@epfl.ch" }]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Scientific/Engineering :: Image Processing",
]
dependencies = [
"napari[all]>=0.4.16",
"qtpy",
"magicgui",
"numpy",
"pandas",
"tifffile",
"pooch==1.8.0",
"scikit-image",
"ultralytics",
"opencv-contrib-python-headless"
]
[project.entry-points."napari.manifest"]
mouselungseg = "mouselungseg:napari.yaml"
[project.scripts]
mouselungseg_predict_image = "mouselungseg.cli:cli_predict_image"
mouselungseg_predict_folder = "mouselungseg.cli:cli_predict_folder"
[project.urls]
homepage = "https://github.com/EPFL-Center-for-Imaging/mouselungseg"
repository = "https://github.com/EPFL-Center-for-Imaging/mouselungseg"
[build-system]
requires = ["setuptools>=42.0.0", "wheel", "setuptools_scm"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
"*" = ["*.yaml"]
[tool.setuptools_scm]
write_to = "src/mouselungseg/_version.py"
version_scheme = "guess-next-dev"
local_scheme = "no-local-version"