generated from linkml/linkml-template
-
Notifications
You must be signed in to change notification settings - Fork 16
/
pyproject.toml
63 lines (53 loc) · 1.94 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
[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 <cjmungall@lbl.gov>"
]
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.6.3"
[tool.poetry.group.dev.dependencies]
linkml = "^1.6.11"
codespell = "^2.2.5"
yamllint = "^1.32.0"
[tool.poetry.group.docs.dependencies]
mkdocs = "^1.4.2"
mkdocs-material = "^8.2.8"
mkdocs-mermaid2-plugin = "^0.6.0"
# Using an unpublished version here because we need a feature which isn't released yet (Aug 2023)
# See: https://github.com/jimporter/mike/issues/154
mike = {git = "https://github.com/jimporter/mike.git", rev = "be1aafe"}
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.codespell]
skip = '.git,*.pdf,*.svg,*.min.*,*.json,*.ttl,*.html,*.jsonld'
# Ignore table where words could be split across rows, also within HTML for ..</td>
# Ignore shortcut specifications like [Ff]alse
# Ignore escaped characters like \n etc
# ignore-regex = '(\|.*\|.*\|.*\||[a-z]*\.\.\.</td>|\[[A-Z][a-z]\][a-z][a-z]|\\[fnrstv])'
# ND,LOD - names/keywords
# ans - variable in JS
# egal - Harmony egal.
ignore-words-list = 'nd,lod,ans,egal,alse'