-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (51 loc) · 1.66 KB
/
pyproject.toml
File metadata and controls
58 lines (51 loc) · 1.66 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
56
57
[build-system]
requires = ["setuptools==68.2.2", "setuptools_scm>=7.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "dextrusion"
version = "0.0.20"
description = "DeXtrusion: automatic detection of cell extrusion in epithelial tissu"
license.file = "LICENSE"
readme = "README.md"
requires-python = ">3.8"
authors = [
{name = "Gaëlle Letort"},
{name = "Alexis Villars"},
]
classifiers = [
"Framework :: napari",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering :: Image Processing",
]
dependencies = [
"matplotlib",
"numpy<2",
"opencv-python",
"tifffile>=2022.2.2",
"roifile",
"scikit-image",
"scikit-learn",
"scipy",
"tensorflow>=2.10,<=2.16; sys_platform == 'linux' or sys_platform == 'win32'",
"tensorflow>=2.10,<=2.16; sys_platform == 'darwin' and platform_machine == 'x86_64'",
"tensorflow-macos>=2.13,<=2.16; sys_platform == 'darwin' and platform_machine == 'arm64'",
"protobuf>=3.19,<5.0; sys_platform=='linux' or sys_platform=='win32'",
"protobuf>=3.19,<5.0; sys_platform=='darwin'",
"ipython",
]
[project.urls]
"Bug Tracker" = "https://github.com/Image-Analysis-Hub/dextrusion/issues"
"Documentation" = "https://image-analysis-hub.github.io/dextrusion/"
"Source Code" = "https://github.com/Image-Analysis-Hub/dextrusion"
"User Support" = "https://github.com/Image-Analysis-Hub/dextrusion/issues"
[tool.setuptools]
package-dir = {"" = "src"}
include-package-data = true
# Explicitly list packages to include
packages = [
"dextrusion",
]