forked from databricks/databricks-sdk-py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
43 lines (40 loc) · 2.06 KB
/
setup.py
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
import io
import pathlib
from setuptools import setup, find_packages
version_data = {}
version_file = pathlib.Path(__file__).parent / 'databricks/sdk/version.py'
with version_file.open('r') as f:
exec(f.read(), version_data)
setup(name="databricks-sdk",
version=version_data['__version__'],
packages=find_packages(exclude=["tests", "*tests.*", "*tests"]),
package_data = {"databricks.sdk": ["py.typed"]},
python_requires=">=3.7",
install_requires=["requests>=2.28.1,<3", "google-auth~=2.0"],
extras_require={"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"],
"notebook": ["ipython>=8,<9", "ipywidgets>=8,<9"],
"openai": ["openai", 'langchain-openai; python_version > "3.7"', "httpx"]},
author="Serge Smertin",
author_email="serge.smertin@databricks.com",
description="Databricks SDK for Python (Beta)",
long_description=io.open("README.md", encoding="utf-8").read(),
long_description_content_type='text/markdown',
url="https://databricks-sdk-py.readthedocs.io",
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",
"Operating System :: OS Independent"])