forked from glencoesoftware/omero2pandas
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (35 loc) · 981 Bytes
/
Copy pathpyproject.toml
File metadata and controls
39 lines (35 loc) · 981 Bytes
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
[build-system]
requires = ["setuptools>=61", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
dynamic = ["version"]
name = "omero2pandas"
description = "OMERO.tables to pandas bridge"
readme = "README.md"
license = {file = "LICENSE.txt"}
authors = [
{name = "Glencoe Software, Inc.", email="info@glencoesoftware.com"},
]
classifiers = [
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'Intended Audience :: End Users/Desktop',
'Programming Language :: Python :: 3',
]
requires-python = ">=3.9"
dependencies = [
'omero-py>=5.19.5',
'pandas>2',
'tqdm',
]
[project.optional-dependencies]
token = ["omero-user-token>=0.3.0"]
remote = [
"pyarrow>=19.0.0",
"tiledb>=0.33.2",
]
[project.urls]
github = "https://github.com/glencoesoftware/omero2pandas"
[tool.setuptools_scm]