-
Notifications
You must be signed in to change notification settings - Fork 158
Expand file tree
/
Copy pathpyproject.toml
More file actions
66 lines (59 loc) · 1.61 KB
/
pyproject.toml
File metadata and controls
66 lines (59 loc) · 1.61 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
[project]
name = "fabric-cicd"
authors = [{ name = "Microsoft Corporation" }]
description = "Microsoft Fabric CI/CD"
readme = "README.md"
requires-python = ">=3.9,<3.14"
license = "MIT"
license-files = ["LICENSE"]
dynamic = ["version"]
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
dependencies = [
"azure-identity>=1.25.0",
"dpath>=2.2.0",
"filetype>=1.2.0",
"jsonpath-ng>=1.8.0",
"pyyaml>=6.0.2",
"requests>=2.32.3",
"urllib3>=2.7.0; python_version>='3.10'",
]
[project.urls]
Repository = "https://github.com/microsoft/fabric-cicd.git"
Changelog = "https://github.com/microsoft/fabric-cicd/blob/main/docs/changelog.md"
[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",
"pygments>=2.18.0,<2.20.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"]
[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/*"]