forked from dungdm93/sqlalchemy-trino
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
43 lines (41 loc) · 1.39 KB
/
setup.py
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
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="sqlalchemy-trino",
version="0.4.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=[
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Database",
"Topic :: Database :: Front-Ends",
],
python_requires='>=3.7',
install_requires=[
"sqlalchemy~=1.3",
"trino~=0.306",
],
entry_points={
"sqlalchemy.dialects": [
"trino = sqlalchemy_trino.dialect:TrinoDialect",
]
},
)