-
Notifications
You must be signed in to change notification settings - Fork 160
Expand file tree
/
Copy pathpyproject.toml
More file actions
72 lines (59 loc) · 1.21 KB
/
pyproject.toml
File metadata and controls
72 lines (59 loc) · 1.21 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
[project]
name = "databricks-bundles"
description = "Python support for Databricks Asset Bundles"
version = "0.278.0"
authors = [
{ name = "Gleb Kanterov", email = "gleb.kanterov@databricks.com" },
]
readme = "README.md"
requires-python = ">=3.10"
license = { file = "LICENSE" }
dependencies = [
]
[build-system]
requires = ["flit_core >=3.11,<4"]
build-backend = "flit_core.buildapi"
[dependency-groups]
dev = [
"pyright==1.1.380",
"pytest-cov==5.0.0",
"pytest==8.3.3",
"ruff==0.9.1",
"sphinx==8.0.2",
"typing_extensions==4.12.2",
]
[tool.flit.module]
name = "databricks"
packages = ["databricks"]
[tool.pytest.ini_options]
addopts = "-ra -q -vv"
testpaths = [
"databricks_tests",
]
[tool.pyright]
exclude = [
"**/__pycache__",
".venv",
"codegen",
"docs",
]
reportMissingImports = true
reportMissingTypeStubs = false
pythonVersion = "3.10"
pythonPlatform = "All"
executionEnvironments = [
{ root = "." },
]
venvPath = "."
venv = ".venv"
[tool.ruff]
# See https://docs.astral.sh/ruff/rules/
lint.select = [
"E4",
"E7",
"E9",
"N", # pep8-naming
"F", # flake8
"I", # isort
"RUF022", # sort __all__, see: https://docs.astral.sh/ruff/rules/unsorted-dunder-all/
]