This repository has been archived by the owner on May 15, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpyproject.toml
73 lines (66 loc) · 1.61 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
61
62
63
64
65
66
67
68
69
70
71
72
73
[tool.poetry]
name = "sqlalchemy-databricks"
version = "0.2.0"
description = "SQLAlchemy Dialect for Databricks"
authors = ["flynn <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/crflynn/sqlalchemy-databricks"
repository = "https://github.com/crflynn/sqlalchemy-databricks"
documentation = "https://github.com/crflynn/sqlalchemy-databricks"
keywords = ["databricks", "sqlalchemy", "dialect"]
classifiers = [
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Database",
"Topic :: Database :: Front-Ends",
]
include = [
{ path="CHANGELOG.md", format="sdist" },
{ path="LICENSE.txt", format="sdist" },
]
[tool.poetry.plugins."sqlalchemy.dialects"]
"databricks.connector" = "sqlalchemy_databricks:DatabricksDialect"
[tool.poetry.dependencies]
python = "^3.8"
databricks-sql-connector = "^2"
SQLAlchemy = "^1"
PyHive = "^0"
[tool.poetry.dev-dependencies]
python-dotenv = "^0.19.2"
pytest = "^6.2.5"
isort = "^5.10.1"
black = "^22.3.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 88
target-version = ['py37']
include = '\.pyi?$'
exclude = '''
(
/(
\.eggs
| \.git
| \.github
| \.hg
| \.mypy_cache
| \.pytest_cache
| \.tox
| \.venv
| _build
| build
| dist
)/
)
'''
[tool.isort]
force_single_line = true
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
line_length = 88