forked from databricks-demos/dbdemos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
25 lines (24 loc) · 1 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
from setuptools import setup, find_packages
#python setup.py clean --all bdist_wheel
setup(
#this will be the package name you will see, e.g. the output of 'conda list' in anaconda prompt
name = 'dbdemos',
#some version number you may wish to add - increment this after every update
version='0.6.11',
author="Databricks",
author_email=["[email protected]", "[email protected]"],
description="Install databricks demos: notebooks, Delta Live Table Pipeline, DBSQL Dashboards, ML Models etc.",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
url="https://github.com/databricks-demos/dbdemos",
packages=find_packages(exclude=["tests", "tests.*"]),
setup_requires=["wheel"],
include_package_data=True,
install_requires=["requests", "pandas", "databricks-sdk>=0.38.0"],
license="Databricks License",
license_files = ('LICENSE',),
tests_require=[
"pytest"
],
python_requires=">=3.7"
)