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

Commit

Permalink
Merge pull request #48 from dungdm93/deprecated
Browse files Browse the repository at this point in the history
Deprecated `sqlalchemy-trino` in favor of `trino-python-client`
  • Loading branch information
dungdm93 authored May 5, 2022
2 parents 29020cd + e105c7f commit b96e43c
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 14 deletions.
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="[email protected]",
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",
]
},
)

0 comments on commit b96e43c

Please sign in to comment.