Skip to content
This repository has been archived by the owner on May 5, 2022. It is now read-only.

Deprecated sqlalchemy-trino in favor of trino-python-client #48

Merged
merged 1 commit into from
May 5, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
include LICENSE
include README.md
recursive-include sqlalchemy_trino *
# recursive-include sqlalchemy_trino *
11 changes: 7 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
sqlalchemy-trino
================
_[Trino](https://trino.io/) (f.k.a PrestoSQL) dialect for SQLAlchemy._

The primary purpose of this is provide a dialect for Trino that can be used with [Apache Superset](https://superset.apache.org/).
But other use-cases should works as well.
# Supported Trino version
## ⚠️ Deprecation and Archive Notice
`sqlalchemy-trino` was developed as _[Trino](https://trino.io/) (f.k.a PrestoSQL) dialect for SQLAlchemy._
Since trinodb/trino-python-client#81, all code of `sqlalchemy-trino` is donated and merged into upstream project.
So now, this project is no longer active and consider as deprecated.


## Supported Trino version

Trino version 352 and higher

Expand Down
11 changes: 2 additions & 9 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,14 @@

setuptools.setup(
name="sqlalchemy-trino",
version="0.4.1",
version="0.5.0",
author="Dũng Đặng Minh",
author_email="dungdm93@live.com",
description="Trino dialect for SQLAlchemy",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/dungdm93/sqlalchemy-trino",
keywords=["sqlalchemy", "trino"],
packages=["sqlalchemy_trino"],
license="Apache 2.0",
platforms=["any"],
classifiers=[
Expand All @@ -32,12 +31,6 @@
],
python_requires='>=3.7',
install_requires=[
"sqlalchemy~=1.3",
"trino==0.306",
"trino[sqlalchemy]>=0.310",
],
entry_points={
"sqlalchemy.dialects": [
"trino = sqlalchemy_trino.dialect:TrinoDialect",
]
},
)