forked from microsoft/fabric-cicd
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (48 loc) · 1.22 KB
/
pyproject.toml
File metadata and controls
55 lines (48 loc) · 1.22 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
[project]
name = "fabric-cicd"
authors = [{ name = "Microsoft Corporation" }]
description = "Microsoft Fabric CI/CD"
readme = "README.md"
requires-python = ">=3.9,<3.13"
license = { file = "LICENSE" }
dynamic = ["version"]
urls.Repository = "https://github.com/microsoft/fabric-cicd.git"
dependencies = [
"azure-identity>=1.19.0",
"dpath>=2.2.0",
"filetype>=1.2.0",
"jsonpath-ng>=1.7.0",
"packaging>=24.2",
"pyyaml>=6.0.2",
"requests>=2.32.3",
]
[dependency-groups]
dev = [
"coverage>=7.6.10",
"gitpython>=3.1.44",
"mike>=2.1.3",
"mkdocs-include-markdown-plugin>=7.1.2",
"mkdocs-material>=9.6.5",
"mkdocs-minify-plugin>=0.8.0",
"mkdocstrings-python>=1.13.0",
"pytest>=8.3.4",
"pytest-mock>=3.14.0",
"ruff>=0.9.5",
]
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
dynamic.version = { attr = "fabric_cicd.constants.VERSION" }
packages.find.where = ["src"]
package-data = { "fabric_cicd" = ["changelog.md"] }
[tool.uv]
package = true
python-preference = "only-managed"
[tool.pytest.ini_options]
addopts = "-v --tb=short"
testpaths = ["tests"]
pythonpath = ["src"]
[tool.coverage.run]
source = ["src"]
omit = ["tests/*"]