forked from cmohl2013/omero-arc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
32 lines (26 loc) · 830 Bytes
/
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "omero-arc"
dynamic = ["version"]
authors = [{ name = "Christoph Möhl" }]
description = "Plugin for omero-cli-transfer to export OMERO data to ARC repositories."
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.8"
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
]
dependencies = ["omero-py==5.13.1", "pandas", "openpyxl"]
[project.optional-dependencies]
dev = [
"omero-cli-transfer",
"ome-types==0.4.2",
"omero-cli-transfer @ git+https://github.com/ome/omero-cli-transfer@main",
]
[project.entry-points."omero_cli_transfer.pack.plugin"]
arc = "omero_arc:pack_arc"
[project.urls]
Homepage = "https://github.com/cmohl2013/omero-arc"