-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
67 lines (59 loc) · 1.6 KB
/
pyproject.toml
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
[build-system]
requires = ["setuptools>=64", "wheel", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "msfabricutils"
dynamic = ["version"]
description = "A Python library exposes additional functionality to work with Python Notebooks in Microsoft Fabric."
authors = [
{ name = "Jimmy Jensen" },
]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
keywords = ["fabric", "Microsoft", "duckdb", "deltalake"]
license.file = "LICENSE"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"azure-identity>=1.17.1",
"duckdb>=1.1.3",
"deltalake>=0.22.0",
"sqlglot<25.19,>=23.4",
"polars-lts-cpu==1.16.0 ; sys_platform == 'darwin'",
"polars==1.16.0 ; sys_platform == 'win32' or sys_platform == 'linux'",
"typer>=0.15.1",
]
[project.urls]
Repository = "https://github.com/mrjsj/msfabricutils"
[project.optional-dependencies]
docs = [
"mkdocs==1.6.1",
"mkdocs-material==9.5.47",
"mkdocs-gen-files==0.5.0",
"mkdocstrings-python",
"mkdocs-include-dir-to-nav==1.2.0",
]
dev = [
"pytest>=6.2.5",
"ruff>=0.8.1",
"freezegun>=1.5.1",
"python-dotenv>=1.0.0",
]
[project.scripts]
msfu = "msfabricutils.cli.cli:main"
[tool.setuptools_scm]
[tool.ruff]
line-length = 100
[tool.ruff.lint]
extend-select = ["Q001", "I001"]
[tool.pytest.ini_options]
pythonpath = [
"src",
]
addopts = "--ignore=tests/internal"