We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e23eabe commit ec33046Copy full SHA for ec33046
setup.py
@@ -78,15 +78,18 @@ def get_tag(self):
78
return python, abi, plat
79
80
81
-long_description = """\
82
-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__))
83
+with open(os.path.join(this_directory, "README.rst"), encoding="utf-8") as f:
84
+ long_description = f.read()
85
exec(open("redshift_connector/version.py").read())
86
87
setup(
88
name="redshift_connector",
89
version=__version__,
90
description="Redshift interface library",
91
long_description=long_description,
92
+ long_description_content_type="text/markdown",
93
author="Amazon Web Services",
94
author_email="[email protected]",
95
url="https://github.com/aws/amazon-redshift-python-driver",
0 commit comments