-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
56 lines (47 loc) · 1.43 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
[build-system]
requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning"]
build-backend = "poetry_dynamic_versioning.backend"
[project]
name = "pid4cat_model"
description = "LinkML model for handle-based PIDs for resources in catalysis (PID4Cat)"
authors = [
# Authors sorted by number of commits
{name = "David Linke", email = "[email protected]"},
]
maintainers = [
{name = "David Linke", email = "[email protected]"},
]
license = {text = "MIT"}
readme = "README.md"
include = ["README.md", "src/pid4cat_model/schema", "project"]
requires-python = ">=3.11" # due to linkml-runtime bug, https://github.com/linkml/linkml-runtime/pull/357
dynamic = ["version"]
dependencies = [
# "requests (>=2.23.0,<3.0.0)" # example
"linkml-runtime >=1.8.0",
]
[project.optional-dependencies]
docs = [
"mkdocs-material >=8.2.8",
"mkdocs-mermaid2-plugin >=1.1.1",
"schemasheets >= 0.1.14",
]
dev = [
# "pid4cat_model[docs]", # no support for recursive optional dependencies: poetry#3369
"mkdocs-material >=8.2.8",
"mkdocs-mermaid2-plugin >=1.1.1",
"schemasheets >= 0.1.14",
# end repeated docs extra
"linkml >= 1.8.5",
]
[tool.poetry]
requires-poetry = ">=2.0"
version = "0.0.0"
[tool.poetry.dependencies]
python = ">=3.11,<4.0" # poetry needs an upper bound for locking
[tool.poetry.requires-plugins]
poetry-dynamic-versioning = ">=1.6.0"
[tool.poetry-dynamic-versioning]
enable = true
vcs = "git"
style = "pep440"