-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (21 loc) · 704 Bytes
/
setup.py
File metadata and controls
23 lines (21 loc) · 704 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import setup
setup(
name='redshift-sqlalchemy',
version='0.1.2',
description='Amazon Redshift Dialect for sqlalchemy',
long_description=open("README.rst").read(),
author='Matt George',
author_email='mgeorge@gmail.com',
license="MIT",
url='https://github.com/sqlalchemy-redshift/sqlalchemy-redshift',
packages=[],
install_requires=['sqlalchemy-redshift==0.1.2'],
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
],
)