-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
82 lines (71 loc) · 1.77 KB
/
pyproject.toml
File metadata and controls
82 lines (71 loc) · 1.77 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
[project]
name = "koza"
dynamic = ["version"]
description = "Data transformation framework for LinkML data models"
requires-python = ">=3.10,<4"
authors = [
{ name="The Monarch Initiative", email="info@monarchinitiative.org" },
{ name="Kevin Schaper", email="kevinschaper@gmail.com" },
{ name="Glass Elsarboukh", email="g.elsarboukh@gmail.com" },
{ name="Kent Shefchek", email="kent@tislab.org" },
{ name="Daniel Korn", email="daniel_korn@med.unc.edu"}
]
readme = "README.md"
license = "BSD-3-Clause"
dependencies = [
"coverage>=7.13.0",
"duckdb",
"loguru",
"biolink-model>=4.3.6",
"mergedeep==1.3.4",
"ordered-set>=4.1.0",
"pydantic>=2.12.5",
"pyyaml>=6.0.3",
"requests>=2.32.5",
"sssom>=0.4",
"tqdm>=4.67.1",
"typer>=0.20.0",
"LinkML>=1.9.0"
]
[project.optional-dependencies]
dev = [
"ruff",
"pytest",
"mkdocs>=1.6.1",
"mkdocs-material>=9.7.0",
"mkdocstrings[python]>=1.0.0",
]
[project.scripts]
koza = "koza.main:typer_app"
[build-system]
#TODO: explore if we need hatchling or could use uv_build
requires = ["hatchling", "uv-dynamic-versioning"]
build-backend = "hatchling.build"
[tool.hatch.version]
source = "uv-dynamic-versioning"
[tool.uv-dynamic-versioning]
vcs = "git"
style = "pep440"
fallback-version = "0.0.0"
[tool.ruff]
line-length = 120
lint.fixable = ["ALL"]
lint.ignore = [
"F541", # f-strings with no placeholders
"S101", # allow asserts
]
# Select or ignore from https://beta.ruff.rs/docs/rules/
lint.select = [
"B", # bugbear
# "D", # pydocstyle
"E", # pycodestyle errors
"F", # Pyflakes
"I", # isort
"Q", # flake8-quotes
"S", # flake8-bandit
"UP", # pyupgrade
"W", # Warning
]
[tool.ruff.format]
quote-style = "double"
line-ending = "lf"