-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
67 lines (61 loc) · 1.85 KB
/
pyproject.toml
File metadata and controls
67 lines (61 loc) · 1.85 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
58
59
60
61
62
63
64
65
66
67
[build-system]
requires = ["setuptools>=64", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "biomero"
dynamic = ["version"]
authors = [
{ name = "Torec Luik", email = "t.t.luik@amsterdamumc.nl" },
{ name = "Core Facility - Cellular Imaging" },
{ email = "cellularimaging@amsterdamumc.nl"}
]
description = "A python library for easy connecting between OMERO (jobs) and a Slurm cluster"
readme = "README.md"
requires-python = ">=3.10"
keywords = ["omero", "slurm", "high-performance-computing", "fair", "image-analysis", "bioimaging", "high-throughput-screening", "high-content-screening", "cytomine", "biomero", "biaflows"]
license = { file = "LICENSE" }
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
dependencies = [
"requests==2.32.4",
"requests-cache==1.1.1",
"fabric==3.1.0",
"paramiko==3.4.0",
"importlib_resources>=5.4.0",
"eventsourcing==9.3",
"sqlalchemy==2.0.32",
"psycopg2==2.9.9",
"eventsourcing_sqlalchemy==0.9"
]
[tool.setuptools.packages]
find = {} # Scan the project directory with the default parameters
[tool.setuptools.package-data]
biomero = []
[tool.setuptools_scm]
[project.optional-dependencies]
test = [
"pytest",
"pytest-cov",
"mock",
"flake8",
"psycopg2-binary"
]
full = [
"ezomero==1.1.1",
"tifffile==2020.9.3",
"omero-metadata==0.12.0",
"omero-cli-zarr==0.8.0",
"ome-zarr==0.14.0",
"zarr==3.1.5",
"numpy<2.0",
"omero-upload==0.4.0"
]
[project.urls]
"Homepage" = "https://github.com/NL-BioImaging/biomero"
"Documentation" = "https://nl-bioimaging.github.io/biomero/"