forked from linkml/linkml-model
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
46 lines (37 loc) · 1.21 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
[tool.poetry]
name = "linkml-model"
version = "0.0.0"
description = "Metamodel schema, documentation, and specification for the Linked Open Data Modeling Language (LinkML)"
license = "MIT"
authors = [
"Chris Mungall <[email protected]>",
"Mark A. Miller <[email protected]>"
]
readme = "README.md"
homepage = "https://linkml.io/"
repository = "https://github.com/linkml/linkml-model/"
documentation = "https://linkml.io/linkml-model/docs/"
keywords = ["linked data", "linkml", "metamodel"]
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.9"
]
packages = [
{ include = "linkml_model" }
]
[tool.poetry.dependencies]
python = "^3.9"
linkml-runtime = "^1.3.0"
[tool.poetry.dev-dependencies]
linkml = "^1.4.2"
mkdocs-material = "^8.2.8"
mkdocs-mermaid2-plugin = "^0.6.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"