-
Notifications
You must be signed in to change notification settings - Fork 73
/
Copy pathsetup.py
42 lines (37 loc) · 1.37 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
"""Setup file."""
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
INSTALL_REQUIRES = ["setuptools", "databricks-sdk"]
DEV_REQUIREMENTS = [
"flake8==6.0",
"delta-spark==2.0.2"
]
IT_REQUIREMENTS = ["typer[all]==0.6.1"]
package_long_description = """###Databricks Labs DLT-META Framework###
The Databricks Labs DLT META is a metadata-driven Databricks Delta Live Tables (aka DLT) framework
which lets you automate your bronze and silver pipelines.
"""
setup(
name="dlt_meta",
version="0.0.8",
python_requires=">=3.8",
setup_requires=["wheel>=0.37.1,<=0.42.0"],
install_requires=INSTALL_REQUIRES,
extras_require={"dev": DEV_REQUIREMENTS, "IT": IT_REQUIREMENTS},
author="Ravi Gawai",
license="Databricks License",
description="DLT-META Framework",
long_description=long_description,
long_description_content_type="text/markdown",
packages=find_packages(include=["src", "integration_tests"]),
entry_points={"group_1": "run=src.__main__:main"},
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Topic :: Software Development :: Testing",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators"
],
)