-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
63 lines (57 loc) · 1.78 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
60
61
62
63
# https://peps.python.org/pep-0517/
[build-system]
requires = ["hatchling", "hatch-vcs"]
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.version]
source = "vcs"
[tool.hatch.build.targets.wheel]
only-include = ["src"]
sources = ["src"]
# https://peps.python.org/pep-0621/
[project]
name = "careamics-stubs"
dynamic = ["version"]
description = "Toolbox for running N2V and friends."
readme = "README.md"
requires-python = ">=3.9"
license = { text = "BSD-3-Clause" }
authors = [
{ name = 'CAREamics team', email = '[email protected]' },
{ name = 'Ashesh', email = '[email protected]' },
{ name = 'Federico Carrara', email = '[email protected]' },
{ name = 'Melisande Croft', email = '[email protected]' },
{ name = 'Joran Deschamps', email = '[email protected]' },
{ name = 'Vera Galinova', email = '[email protected]' },
{ name = 'Igor Zubarev', email = '[email protected]' },
]
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: BSD License",
"Typing :: Typed",
]
dependencies = [
'careamics',
'numpy<2.0.0',
'torch>=2.0.0',
'torchvision',
'bioimageio.core>=0.6.9',
'tifffile',
'psutil',
'pydantic>=2.5,<2.9',
'pytorch_lightning>=2.2.0',
'pyyaml',
'typer==0.12.3',
'scikit-image<=0.23.2',
'zarr<3.0.0',
]
[project.urls]
homepage = "https://careamics.github.io/"
repository = "https://github.com/CAREamics/careamics"