forked from linkml/linkml-runtime
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
61 lines (51 loc) · 1.67 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
[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.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9"
]
packages = [
{ include = "linkml_runtime" }
]
[tool.poetry.scripts]
comparefiles = "linkml_runtime.utils.comparefiles:cli"
[tool.poetry.dependencies]
python = "^3.7.1"
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 = "*"
[tool.poetry.dev-dependencies]
coverage = "^6.2"
importlib-metadata = {version = "^1.0", python = "<3.8"}
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"