-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
42 lines (39 loc) · 1.82 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
import io
import pathlib
from setuptools import setup, find_packages
version_data = {}
version_file = pathlib.Path(__file__).parent / 'dbrdemo/version.py'
with version_file.open('r') as f:
exec(f.read(), version_data)
setup(name="dbrdemo",
version=version_data['__version__'],
packages=find_packages(exclude=["tests", "*tests.*", "*tests"]),
python_requires=">=3.10",
install_requires=["databricks-labs-blueprint==0.4.3", "databricks-sdk==0.29.0"],
entry_points = {
'console_scripts': [
'dbrdemo-foobar=dbrdemo.cli:cli_foobar'
]
},
extras_require={"dev": ["databricks-connect==14.3.2", "pytest==7.4.3", "pytest-cov==4.1.0", "pytest-xdist==3.5.0", "pytest-mock", "sh==2.0.7",
"yapf", "pycodestyle", "autoflake", "isort", "wheel",
"pytest-approvaltests==0.2.4", "pylint==3.0.3", "tabulate==0.9.0", "pyright==1.1.370" ]
},
author="Grzegorz Rusin",
author_email="grzegorz.rusin@databricks.com",
description="Databricks Demo VSCode Project",
long_description=io.open("README.md", encoding="utf-8").read(),
long_description_content_type='text/markdown',
keywords="dbr demo vscode project",
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",
"Operating System :: OS Independent"])