This repository has been archived by the owner on Apr 25, 2023. It is now read-only.
forked from sqlalchemy-redshift/sqlalchemy-redshift
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
48 lines (46 loc) · 1.72 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
44
45
46
47
48
from setuptools import setup
readme = open('README.rst').read()
history = open('CHANGES.rst').read().replace('.. :changelog:', '')
setup(
name='sqlalchemy-redshift',
version='0.7.2.dev0',
description='Amazon Redshift Dialect for sqlalchemy',
long_description=readme + '\n\n' + history,
author='Matt George',
author_email='mgeorge@gmail.com',
maintainer='Thomas Grainger',
maintainer_email='sqlalchemy-redshift@graingert.co.uk',
license="MIT",
url='https://github.com/sqlalchemy-redshift/sqlalchemy-redshift',
packages=['sqlalchemy_redshift', 'redshift_sqlalchemy'],
package_data={'sqlalchemy_redshift': ['redshift-ca-bundle.crt']},
install_requires=[
'psycopg2>=2.5',
# requires sqlalchemy.sql.base.DialectKWArgs.dialect_options, new in
# version 0.9.2
'SQLAlchemy>=0.9.2,<2.0.0',
],
extras_require={
':python_version < "3.4"': 'enum34 >= 1.1.6, < 2.0.0'
},
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 :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
],
entry_points={
'sqlalchemy.dialects': [
'redshift = sqlalchemy_redshift.dialect:RedshiftDialect',
'redshift.psycopg2 = sqlalchemy_redshift.dialect:RedshiftDialect',
]
},
)