forked from sqlalchemy-redshift/sqlalchemy-redshift
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
39 lines (38 loc) · 1.53 KB
/
Copy pathsetup.py
File metadata and controls
39 lines (38 loc) · 1.53 KB
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
from setuptools import setup
setup(
name='gx-sqlalchemy-redshift',
version='0.8.20',
description='Great Expectations fork of the Amazon Redshift sqlalchemy dialect',
author='The Great Expectations Team',
author_email='team@greatexpectations.io',
license="MIT",
url='https://github.com/great-expectations/sqlalchemy-redshift',
packages=['sqlalchemy_redshift', 'redshift_sqlalchemy'],
package_data={'sqlalchemy_redshift': ['redshift-ca-bundle.crt']},
python_requires='>=3.9',
install_requires=[
'SQLAlchemy>2.0.7',
'packaging',
],
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
],
entry_points={
'sqlalchemy.dialects': [
'redshift = sqlalchemy_redshift.dialect:RedshiftDialect_psycopg2',
'redshift.psycopg2 = sqlalchemy_redshift.dialect:RedshiftDialect_psycopg2',
# 'redshift.psycopg2cffi = sqlalchemy_redshift.dialect:RedshiftDialect_psycopg2cffi',
# 'redshift.redshift_connector = sqlalchemy_redshift.dialect:RedshiftDialect_redshift_connector',
]
},
)