forked from microsoft/fabric-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
81 lines (70 loc) · 1.94 KB
/
pyproject.toml
File metadata and controls
81 lines (70 loc) · 1.94 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
73
74
75
76
77
78
79
80
81
[project]
name = "ms-fabric-cli"
authors = [{ name = "Microsoft Corporation" }]
description = "Command-line tool for Microsoft Fabric"
readme = "README.md"
dynamic = ["version"]
license = "MIT"
requires-python = ">=3.10,<3.14"
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Development Status :: 5 - Production/Stable",
"Operating System :: OS Independent",
]
dependencies = [
"msal[broker]>=1.34,<2 ; platform_system != 'Linux'",
"msal>=1.34,<2",
"msal_extensions",
"questionary",
"prompt_toolkit>=3.0.41",
"cachetools>=5.5.0",
"jmespath",
"pyyaml==6.0.2",
"argcomplete>=3.6.2",
"psutil==7.0.0",
"requests",
"cryptography",
]
[project.scripts]
fab = "fabric_cli.main:main"
[project.urls]
Repository = "https://github.com/microsoft/fabric-cli.git"
[build-system]
requires = ["setuptools>=65.5.1"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages.find.where = ["src"]
dynamic.version = { attr = "fabric_cli.__init__.__version__" }
package-data = { "fabric_cli.core.fab_config" = [
"command_support.yaml",
], "fabric_cli.commands.fs" = [
"payloads/*",
] }
[tool.mypy]
# Module-specific overrides
[[tool.mypy.overrides]]
module = "pytest.*"
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = "msal.*"
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = "msal_extensions"
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = "fabric_cli.utils.fab_mem_store"
ignore_errors = true
[[tool.mypy.overrides]]
module = "pyspark.*"
ignore_missing_imports = true
[tool.pytest.ini_options]
pythonpath = ["src"]
# Uncomment to enable live recording mode
# addopts = ["--record"]
markers = [
"token_claims(arg): override the 'upn' or 'ctid' claim returned by get_token_claims",
]