forked from databricks/databricks-sdk-py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
85 lines (77 loc) · 2.09 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "databricks-sdk"
dynamic = ["version"]
description = "Databricks SDK for Python (Beta)"
readme = "README.md"
requires-python = ">=3.7"
keywords = ["databricks", "sdk"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"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",
"Operating System :: OS Independent",
]
dependencies = [
"requests>=2.28.1,<3",
"google-auth~=2.0",
]
[project.urls]
Documentation = "https://databricks-sdk-py.readthedocs.io"
[project.optional-dependencies]
dev = [
"pytest",
"pytest-cov",
"pytest-xdist",
"pytest-mock",
"black",
"pycodestyle",
"autoflake",
"isort",
"wheel",
"ipython",
"ipywidgets",
"requests-mock",
"pyfakefs",
"databricks-connect",
"pytest-rerunfailures",
"openai",
'langchain-openai; python_version > "3.7"',
"httpx",
"build", # some integration tests depend on the databricks-sdk-py wheel
]
notebook = [
"ipython>=8,<9",
"ipywidgets>=8,<9",
]
openai = [
"openai",
'langchain-openai; python_version > "3.7"',
"httpx",
]
[tool.setuptools.dynamic]
version = { attr = "databricks.sdk.version.__version__" }
[tool.setuptools.packages.find]
include = ["databricks", "databricks.*"]
[tool.setuptools.package-data]
"databricks.sdk" = ["py.typed"]
[tool.black]
line-length = 120
target-version = ['py37', 'py38', 'py39', 'py310', 'py311','py312','py313']
[tool.pyright]
include = ["."]
exclude = ["**/node_modules", "**/__pycache__"]
reportMissingImports = true
reportMissingTypeStubs = false
pythonVersion = "3.7"