-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (36 loc) · 947 Bytes
/
pyproject.toml
File metadata and controls
41 lines (36 loc) · 947 Bytes
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "credentials"
version = "2.0.0"
requires-python = ">=3.12"
dependencies = [
"linkml-runtime>=1.9.5",
"pyld>=2.0.4",
"PyYAML>=6.0.3",
"click>=8.3.2, <8.4",
# linkml: installed from OMB submodule via make setup (single source of truth)
# harbour-credentials: installed from submodule via make setup (not on PyPI)
# ontology-management-base: installed from submodule via make setup (not on PyPI)
]
[project.optional-dependencies]
dev = [
"ruff>=0.15.10",
"pre-commit>=4.5.1",
"pytest>=9.0.3",
"pytest-cov>=6.0",
]
docs = [
"mkdocs>=1.6.1",
"mkdocs-material>=9.5.0",
"pymdown-extensions>=10.21.2",
]
[tool.ruff]
line-length = 88
target-version = "py312"
[tool.ruff.lint]
select = ["E", "F", "W", "I"]
ignore = ["E203", "E501"]
[tool.ruff.lint.isort]
known-first-party = ["credentials"]