-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
74 lines (61 loc) · 1.61 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
64
65
66
67
68
69
70
71
72
73
74
[build-system]
requires = [
"setuptools>=60",
"setuptools-scm>=8.0",
]
[tool.setuptools_scm]
[tools.setuptools.dynamic]
version = {attr = "omero_rdf.__version__"}
[project]
name = "omero-rdf"
readme = "README.rst"
dynamic = ["version"]
description="A plugin for exporting rdf from OMERO"
requires-python = ">3.8"
dependencies = [
"omero-py>=5.8",
"entrypoints",
"types-entrypoints",
"future",
"rdflib",
"omero-marshal",
"wikidataintegrator",
"packaging"
]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Environment :: Plugins",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries :: Python Modules",
]
keywords = [
"OMERO.cli", "plugin",
]
authors = [
{name = "The Open Microscopy Team"},
]
[project.optional-dependencies]
tests = [
"pytest",
"restview",
"mox3",
]
[project.urls]
Repository = "https://github.com/German-BioImaging/omero-rdf"
Changelog = "https://github.com/German-BioImaging/omero-rdf/blob/master/CHANGES.txt"
[project.entry-points."omero_rdf.annotation_handler"]
idr_annotations = "omero_rdf.idr_annotations:IDRAnnotationHandler"
[tool.setuptools]
package-dir = {""= "src"}
[tools.mypy]
check_untyped_defs = true
disallow_incomplete_defs = true
disallow_untyped_defs = true
no_implicit_optional = true
disallow_any_generics = false
ignore_missing_imports = true