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