-
Notifications
You must be signed in to change notification settings - Fork 56
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (42 loc) · 816 Bytes
/
pyproject.toml
File metadata and controls
46 lines (42 loc) · 816 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
42
43
44
45
46
[project]
name = "databricks-labs-sandbox"
version = "0.0.1"
description = "Experimental and low-maturity scripts"
authors = [
{name = "Databricks Labs"},
]
requires-python = ">=3.10"
dependencies = [
"databricks-sdk==0.40.0",
"pyyaml~=6.0.2",
"mlflow[databricks]~=2.16.0",
"databricks-labs-blueprint==0.12.0",
"databricks-labs-lsql==0.14.1",
]
[build-system]
requires = [
"hatchling~=1.29.0",
]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = [
"ip_access_list_analyzer",
"sql_migration_assistant",
]
[dependency-groups]
dev = [
{include-group = "lint"},
{include-group = "test"},
]
lint = [
"ruff~=0.11.0",
]
test = [
"pytest~=8.3.0",
"pytest-cov~=6.0.0",
]
yq = [
"yq~=3.4.3",
]
[tool.uv]
required-version = "~=0.11.0"