This repository was archived by the owner on Apr 16, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathpyproject.toml
More file actions
243 lines (224 loc) · 6.09 KB
/
pyproject.toml
File metadata and controls
243 lines (224 loc) · 6.09 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
[build-system]
requires = ["hatchling", "uv-dynamic-versioning"]
build-backend = "hatchling.build"
[project]
name = "linkml-runtime"
description = "Runtime environment for LinkML, the Linked open data modeling language"
authors = [
{name = "Chris Mungall", email = "cjmungall@lbl.gov"},
{name = "Harold Solbrig", email = "solbrig@jhu.edu"},
{name = "Sierra Moxon", email = "smoxon@lbl.gov"},
{name = "Bill Duncan", email = "wdduncan@gmail.com"},
{name = "Harshad Hegde", email = "hhegde@lbl.gov"},
]
license = "CC0-1.0"
license-files = ["LICENSE"]
homepage = "https://github.com/linkml/linkml-runtime"
repository = "https://github.com/linkml/linkml-runtime"
documentation = "https://github.com/linkml/linkml-runtime"
readme = "README.md"
keywords = ["linkml", "metamodel", "schema visualization", "rdf", "owl", "yaml"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Intended Audience :: Healthcare Industry",
"Topic :: Software Development :: Libraries :: Python Modules",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
include = ["linkml_runtime"]
requires-python = ">=3.9"
dynamic = ["version"]
dependencies = [
"click",
"deprecated",
"hbreader",
"json-flattener >=0.1.9",
"jsonasobj2 ==1.*,>=1.0.0,>=1.0.4",
"jsonschema >=3.2.0",
"prefixcommons >=0.1.12",
"pyyaml",
"rdflib >=6.0.0",
"requests",
"prefixmaps >=0.1.4",
"curies >=0.5.4",
"pydantic >=2.0.0, <3.0.0",
"isodate >=0.7.2, <1.0.0; python_version < '3.11'",
]
[dependency-groups]
dev = [
"coverage >=6.2",
"requests-cache >=1.2.0",
"tox>=4",
"ruff==0.11.13",
]
[project.scripts]
comparefiles = "linkml_runtime.utils.comparefiles:cli"
linkml-normalize = "linkml_runtime.processing.referencevalidator:cli"
[project.optional-dependencies]
dev = [
"coverage",
"requests-cache",
]
[tool.codespell]
skip = [
".git", "*.pdf", "*.svg", "*.dill",
"uv.lock",
]
# Ignore table where words could be split across rows
ignore-regex = '(\|.*\|.*\|.*\||\[[A-Z][a-z]\][a-z][a-z])'
ignore-words-list = [
"CrossReference",
"ND",
"MILIARY",
"Miliary",
# The two below are from metamodel upstream, should be
# dropped when upstream is fixed
"GENERARE",
"re-used",
"ot",
"VRSATILE",
"vrsatile"
]
quiet-level = 3
# https://docs.astral.sh/ruff/settings/
[tool.ruff]
extend-exclude = []
force-exclude = true
line-length = 120
# Assume Python 3.9
target-version = "py39"
[tool.ruff.lint]
select = [
"E", # pycodestyle errors
"F", # Pyflakes
"I", # isort
"W", # pycodestyle warnings
"C90", # mccabe +
"N", # pep8-naming
# "D", # pydocstyle
"UP", # pyupgrade
# extensions
# "YTT", # flake8-2020
# "ANN", # flake8-annotations
# "ASYNC", # flake8-async
# "S", # flake8-bandit
# "BLE", # flake8-blind-except
# "FBT", # flake8-boolean-trap
# "B", # flake8-bugbear
# "A", # flake8-builtins
# "COM", # flake8-commas
# "CPY", # flake8-copyright
# "C4", # flake8-comprehensions
# "DTZ", # flake8-datetimez
# "T10", # flake8-debugger
# "DJ", # flake8-django
# "EM", # flake8-errmsg
# "EXE", # flake8-executable
# "FA", # flake8-future-annotations
# "ISC", # flake8-implicit-str-concat
# "ICN", # flake8-import-conventions
# "G", # flake8-logging-format
# "INP", # flake8-no-pep420
# "PIE", # flake8-pie
# "T20", # flake8-print
# "PYI", # flake8-pyi
# "PT", # flake8-pytest-style
# "Q", # flake8-quotes
# "RSE", # flake8-raise
# "RET", # flake8-return
# "SLF", # flake8-self
# "SLOT", # flake8-slots
# "SIM", # flake8-simplify
# "TID", # flake8-tidy-imports
# "TCH", # flake8-type-checking
# "INT", # flake8-gettext
# "ARG", # flake8-unused-arguments
# "PTH", # flake8-use-pathlib
# "TD", # flake8-todos
# "FIX", # flake8-fixme
# "ERA", # eradicate
# "PD", # pandas-vet
# "PGH", # pygrep-hooks
# "PL", # Pylint
# "TRY", # tryceratops
# "FLY", # flynt
# "NPY", # NumPy-specific rules
# "AIR", # Airflow
# "PERF", # Perflint
# "FURB", # refurb
# "LOG", # flake8-logging
# "RUF", # Ruff-specific rules
]
# Allow autofix for all enabled rules (when `--fix`) is provided.
fixable = ["ALL"]
unfixable = []
# D203: one-blank-line-before-class (conflicts with D211)
# D212: multi-line-summary-first-line (conflicts with D213)
# E203: whitespace before ',', ';', or ':'
# E501: line length
# ISC001: conflicts with Ruff's formatter
ignore = [
"D203",
"D213",
"E203",
"E501",
"ISC001",
]
[tool.ruff.lint.per-file-ignores]
"tests/**/*.py" = ["S101"] # use of assert
[tool.ruff.lint.mccabe]
# Flag errors (`C901`) whenever the complexity level exceeds 15.
max-complexity = 15
[tool.tox]
requires = ["tox>=4"]
env_list = ["lint", "py{39,310,311,312,313}"]
[tool.tox.env_run_base]
allowlist_externals = ["uv"]
deps = ["pytest"]
commands = [
["uv", "sync", "--all-extras", "--dev"],
["uv", "run", "pytest", "{posargs}"],
]
[tool.tox.env.codespell]
description = "Run spell checkers."
skip_install = true
deps = [
"codespell",
"tomli", # required for getting config from pyproject.toml
]
commands = [
["codespell", "{posargs}"]
]
[tool.tox.env.format]
description = "Run ruff code formatter."
skip_install = true
deps = ["ruff==0.11.13"]
commands = [
["ruff", "format", "{posargs:.}"],
]
[tool.tox.env.format_check]
description = "Check that code is correctly formatted by ruff."
skip_install = true
deps = ["ruff==0.11.13"]
commands = [
["ruff", "format", "--check", "{posargs:.}"],
]
[tool.tox.env.lint]
description = "Run code linter and formatter (no fixes)."
skip_install = true
deps = ["ruff==0.11.13"]
commands = [
["ruff", "check", "{posargs:.}"],
]
[tool.uv-dynamic-versioning]
vcs = "git"
style = "pep440"
fallback-version = "0.0.0"
[tool.hatch.version]
source = "uv-dynamic-versioning"