Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,15 +78,18 @@ def get_tag(self):
return python, abi, plat


long_description = """\
redshift_connector is a Pure-Python interface to the Amazon Redshift. """
# read the contents of your README file
this_directory = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(this_directory, "README.rst"), encoding="utf-8") as f:
long_description = f.read()
exec(open("redshift_connector/version.py").read())

setup(
name="redshift_connector",
version=__version__,
description="Redshift interface library",
long_description=long_description,
long_description_content_type="text/markdown",
author="Amazon Web Services",
author_email="redshift-drivers@amazon.com",
url="https://github.com/aws/amazon-redshift-python-driver",
Expand Down