-
Notifications
You must be signed in to change notification settings - Fork 11
/
pyproject.toml
57 lines (47 loc) · 1.55 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
[tool.poetry]
name = "bmt"
version = "1.4.3"
description = "Biolink Model Toolkit: A Python API for working with the Biolink Model"
authors = ["Sierra Taylor Moxon <[email protected]>"]
license = "BSD"
readme = "README.md"
repository = "https://github.com/biolink/biolink-model-toolkit"
documentation = "https://biolink.github.io/biolink-model-toolkit/"
keywords = ["schema", "linked data", "data modeling", "biolink", "api"]
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"
]
packages = [
{ include = "bmt" }
]
[tool.poetry-dynamic-versioning]
enable = true
vcs = "git"
style = "pep440"
[tool.poetry.dependencies]
python = "^3.9"
linkml-runtime = "^1.6.3"
deprecation = "^2.1.0"
stringcase = "^1.2.0"
[tool.poetry.dev-dependencies]
pytest = "^7.2.2"
Sphinx = "^5.3.0"
sphinx-rtd-theme = "^1.3.0"
sphinxcontrib-napoleon = "^0.7"
recommonmark = "^0.7.1"
# sphinx-autodoc-typehints = "^1.19.5"
sphinx-click = "^4.3.0"
[tool.poetry.extras]
docs = ["Sphinx", "sphinxcontrib-mermaid"]
[build-system]
requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning"]
build-backend = "poetry_dynamic_versioning.backend"