forked from crflynn/databricks-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
60 lines (55 loc) · 1.41 KB
/
pyproject.toml
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
[tool.black]
line-length = 120
target-version = ['py37']
include = '\.pyi?$'
exclude = '''
(
/(
\.eggs
| \.git
| \.github
| \.hg
| \.mypy_cache
| \.pytest_cache
| \.tox
| \.venv
| _build
| build
| dist
)/
)
'''
[tool.poetry]
name = "databricks_api"
version = "0.4.0"
description = "Databricks API client auto-generated from the official databricks-cli package"
authors = ["Christopher Flynn <[email protected]>"]
readme = "README.rst"
license = "MIT"
repository = "https://github.com/crflynn/databricks-api"
homepage = "https://github.com/crflynn/databricks-api"
packages = [
{ include = "databricks_api" }
]
include = ["HISTORY.rst"]
keywords = ["databricks", "api", "client"]
classifiers = [
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: Implementation :: CPython",
]
[tool.poetry.dependencies]
python = "~2.7 || ^3.5"
databricks-cli = "^0.10.0"
[tool.poetry.dev-dependencies]
black = {version = "^19.10b0",allow-prereleases = true,python = "^3.7"}
pytest = "=4.6"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"