-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathpyproject.toml
More file actions
66 lines (59 loc) · 1.69 KB
/
Copy pathpyproject.toml
File metadata and controls
66 lines (59 loc) · 1.69 KB
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
[build-system]
requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning"]
build-backend = "poetry_dynamic_versioning.backend"
[project]
name = "sssom-schema"
description = "SSSOM is a Simple Standard for Sharing Ontology Mappings."
authors = [
{name = "Nicolas Matentzoglu", email = "nicolas.matentzoglu@gmail.com"},
{name = "Harshad Hegde", email = "hhegde@lbl.gov"},
]
license = "MIT"
license-files = ["LICENSE"]
readme = "README.md"
keywords = ["schema", "ontology", "mappings", "sssom"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Topic :: Software Development :: Libraries :: Python Modules",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
requires-python = ">=3.10.0"
dynamic = ["version"]
dependencies = [
"jinjanator",
"linkml>=1.10.0",
"linkml-runtime>=1.10.0",
]
[dependency-groups]
tests = [
"pytest"
]
docs = [
"mkdocs-material==9.0.0",
"mkdocs-mermaid2-plugin==1.1.1",
"mike"
]
[tool.poetry]
requires-poetry = ">=2.0"
version = "0.0.0"
[tool.poetry.dependencies]
python = "^3.10"
[tool.poetry.requires-plugins]
poetry-dynamic-versioning = ">=1.8.2"
[tool.poetry-dynamic-versioning]
enable = true
vcs = "git"
style = "pep440"
[tool.codespell]
# Ref: https://github.com/codespell-project/codespell#using-a-config-file
skip = '.git*,*.pdf,*.lock,*.svg'
check-hidden = true
ignore-regex = '\b(COMENT|EHR|LOD)\b'
ignore-words-list = 'disjointness'