databricks-sqlalchemy 0.0.1b1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,19 @@
|
|
1
|
+
Metadata-Version: 2.1
|
2
|
+
Name: databricks-sqlalchemy
|
3
|
+
Version: 0.0.1b1
|
4
|
+
Summary: SQLAlchemy dialect for Databricks
|
5
|
+
License: Apache-2.0
|
6
|
+
Author: Databricks
|
7
|
+
Author-email: databricks-sql-connector-maintainers@databricks.com
|
8
|
+
Requires-Python: >=3.8.0,<4.0.0
|
9
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
10
|
+
Classifier: Programming Language :: Python :: 3
|
11
|
+
Classifier: Programming Language :: Python :: 3.8
|
12
|
+
Classifier: Programming Language :: Python :: 3.9
|
13
|
+
Classifier: Programming Language :: Python :: 3.10
|
14
|
+
Classifier: Programming Language :: Python :: 3.11
|
15
|
+
Description-Content-Type: text/markdown
|
16
|
+
|
17
|
+
# SQLAlchemy Dialect for Databricks
|
18
|
+
|
19
|
+
To install the SQLAlchemy dialect for Databricks, see [here](https://github.com/databricks/databricks-sql-python/blob/main/src/databricks/sqlalchemy/README.sqlalchemy.md).
|
@@ -0,0 +1,7 @@
|
|
1
|
+
# See: https://packaging.python.org/guides/packaging-namespace-packages/#pkgutil-style-namespace-packages
|
2
|
+
#
|
3
|
+
# This file must only contain the following line, or other packages in the databricks.* namespace
|
4
|
+
# may not be importable. The contents of this file must be byte-for-byte equivalent across all packages.
|
5
|
+
# If they are not, parallel package installation may lead to clobbered and invalid files.
|
6
|
+
# Also see https://github.com/databricks/databricks-sdk-py/issues/343.
|
7
|
+
__path__ = __import__("pkgutil").extend_path(__path__, __name__)
|
@@ -0,0 +1,16 @@
|
|
1
|
+
[tool.poetry]
|
2
|
+
name = "databricks-sqlalchemy"
|
3
|
+
version = "0.0.1b1"
|
4
|
+
description = "SQLAlchemy dialect for Databricks"
|
5
|
+
authors = ["Databricks <databricks-sql-connector-maintainers@databricks.com>"]
|
6
|
+
license = "Apache-2.0"
|
7
|
+
readme = "README.md"
|
8
|
+
packages = [{include = "databricks"}]
|
9
|
+
|
10
|
+
[tool.poetry.dependencies]
|
11
|
+
python = "^3.8.0"
|
12
|
+
|
13
|
+
|
14
|
+
[build-system]
|
15
|
+
requires = ["poetry-core"]
|
16
|
+
build-backend = "poetry.core.masonry.api"
|