-
Notifications
You must be signed in to change notification settings - Fork 131
/
Copy pathpyproject.toml
74 lines (68 loc) · 1.82 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
[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",
"yapf",
"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"]