-
Notifications
You must be signed in to change notification settings - Fork 24
/
pyproject.toml
71 lines (61 loc) · 1.98 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
[tool.poetry]
name = "linkml-runtime"
version = "0.0.0"
description = "Runtime environment for LinkML, the Linked open data modeling language"
authors = [
"Chris Mungall <[email protected]>",
"Harold Solbrig <[email protected]>",
"Sierra Moxon <[email protected]>",
"Bill Duncan <[email protected]>",
"Harshad Hegde <[email protected]>"
]
readme = "README.md"
homepage = "https://github.com/linkml/linkml-runtime"
repository = "https://github.com/linkml/linkml-runtime"
documentation = "https://github.com/linkml/linkml-runtime"
keywords = ["linkml", "metamodel", "schema visualization", "rdf", "owl", "yaml"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Intended Audience :: Healthcare Industry",
"License :: CC0 1.0 Universal (CC0 1.0) Public Domain Dedication",
"Topic :: Software Development :: Libraries :: Python Modules",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
packages = [
{ include = "linkml_runtime" }
]
[tool.poetry-dynamic-versioning]
enable = true
vcs = "git"
style = "pep440"
[tool.poetry.scripts]
comparefiles = "linkml_runtime.utils.comparefiles:cli"
linkml-normalize = "linkml_runtime.processing.referencevalidator:cli"
[tool.poetry.dependencies]
python = "^3.8"
click = "*"
deprecated = "*"
hbreader = "*"
json-flattener = ">=0.1.9"
jsonasobj2 = "==1.*,>=1.0.0,>=1.0.4"
jsonschema = ">=3.2.0"
prefixcommons = ">=0.1.12"
pyyaml = "*"
rdflib = ">=6.0.0"
requests = "*"
prefixmaps = ">=0.1.4"
curies = ">=0.5.4"
pydantic = ">=1.10.2, <3.0.0"
[tool.poetry.dev-dependencies]
coverage = "^6.2"
requests-cache = "^1.2.0"
[build-system]
requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning"]
build-backend = "poetry_dynamic_versioning.backend"