generated from kbase/kbase-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (39 loc) · 1.08 KB
/
pyproject.toml
File metadata and controls
47 lines (39 loc) · 1.08 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "data_lakehouse_ingest"
version = "0.0.4"
description = "Minimal ingestion stub for CDMHUB/BERDLHUB notebooks"
authors = [{ name="CDM", email="amkhan@lbl.gov" }]
license = { text = "MIT" }
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"boto3>=1.34.0",
"minio>=7.2.0",
"linkml>=1.9.4",
"linkml-runtime>=1.9.5",
"linkml-validator>=0.4.5",
"berdl-notebook-utils",
]
[dependency-groups]
dev = [
"pytest>=8.3.4",
"pytest-cov>=6.0.0",
"coverage",
"ruff>=0.11.5",
"ipykernel"
]
[tool.pytest.ini_options]
pythonpath = ["src"]
[tool.setuptools]
packages = { find = { where = ["src"] } }
[tool.ruff]
line-length = 100
target-version = "py313"
[tool.ruff.lint]
select = ["F", "E", "W"] # minimal: pyflakes + pycodestyle
ignore = ["E501"] # ignore line length, handled by line-length above
[tool.uv.sources]
berdl-notebook-utils = { git = "https://github.com/BERDataLakehouse/spark_notebook.git", subdirectory = "notebook_utils" }