forked from runstatic/databricks_deployment_helper
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
17 lines (16 loc) · 640 Bytes
/
setup.py
File metadata and controls
17 lines (16 loc) · 640 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
from setuptools import setup, find_packages
setup(
name="databricks_deployment_helper",
version="0.2",
packages=find_packages(exclude=["tests", "tests.*"]),
url="https://github.com/runstatic/databricks_deployment_helper",
license="",
author="Emanuele Viglianisi, David Hohensinn, Philip Buttinger",
author_email="emanuele.viglianisi@runtastic.com, breaka@gmx.at, philip.buttinger@runtastic.com", # TODO: update your email if you want
description="A set of python classes to define databricks job",
install_requires=[
"pyyaml==6.0",
"gitpython==3.1.43",
"glom==23.3.0",
],
)