This repository has been archived by the owner on Jun 13, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
41 lines (35 loc) · 1.47 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
# coding: utf-8
"""
Jobs API 2.1
The Jobs API allows you to create, edit, and delete jobs. You should never hard code secrets or store them in plain text. Use the [Secrets API](https://docs.microsoft.com/azure/databricks/dev-tools/api/latest/secrets) to manage secrets in the [Databricks CLI](https://docs.microsoft.com/azure/databricks/dev-tools/cli/index). Use the [Secrets utility](https://docs.microsoft.com/azure/databricks/dev-tools/databricks-utils#dbutils-secrets) to reference secrets in notebooks and jobs. # noqa: E501
The version of the OpenAPI document: 2.1
Generated by: https://openapi-generator.tech
"""
from setuptools import setup, find_packages # noqa: H301
from databricks_jobs import __version__
setup(
name="databricks-jobs",
version=__version__,
description="Databricks Jobs API 2.1 Client",
author="Judah Rand",
author_email="[email protected]",
url="https://github.com/judahrand/databricks-jobs",
keywords=[
"OpenAPI",
"OpenAPI-Generator",
"Databricks",
"Jobs API 2.1",
],
python_requires=">=3.8",
install_requires=[
"urllib3 >= 1.25.3",
"python-dateutil",
"pydantic",
"aenum"
],
packages=find_packages(exclude=["test", "tests"]),
package_data={"databricks_jobs": ["py.typed"]},
include_package_data=True,
long_description_content_type='text/markdown',
long_description=open('README.md').read(),
)