-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
53 lines (48 loc) · 1.65 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
# https://peps.python.org/pep-0517/
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
# read more about configuring hatch at:
# https://hatch.pypa.io/latest/config/build/
# https://hatch.pypa.io/latest/config/metadata/
[tool.hatch.build.targets.wheel]
only-include = ["src"]
sources = ["src"]
# https://peps.python.org/pep-0621/
[project]
name = "microsplit-reproducibility"
version = "0.0.1"
description = "Reproducibility package for MicroSplit, a deep-learning based microscopy image splitting algorithm."
readme = "README.md"
requires-python = ">=3.9"
license = { text = "BSD-3-Clause" }
authors = [
{ name = 'Ashesh', email = '[email protected]' },
{ name = 'Federico Carrara', email = '[email protected]' },
{ name = 'Igor Zubarev', email = '[email protected]' },
{ name = 'Vera Galinova', email = '[email protected]' },
{ name = 'Melisande Croft', email = '[email protected]' },
{ name = 'Joran Deschamps', email = '[email protected]' },
{ name = 'Florian Jug', email = '[email protected]' },
]
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: BSD License",
"Typing :: Typed",
]
dependencies = [
"careamics[examples, wandb]>=0.0.8",
"imagecodecs<=2024.9.22",
"nis2pyr",
"nd2",
"czifile",
"nd2reader",
"microssim",
]
[project.urls]
homepage = "https://careamics.github.io/"
repository = "https://github.com/CAREamics/MicroSplit-reproducibility"