File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -78,15 +78,18 @@ def get_tag(self):
7878 return python , abi , plat
7979
8080
81- long_description = """\
82- redshift_connector is a Pure-Python interface to the Amazon Redshift. """
81+ # read the contents of your README file
82+ 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 ()
8385exec (open ("redshift_connector/version.py" ).read ())
8486
8587setup (
8688 name = "redshift_connector" ,
8789 version = __version__ ,
8890 description = "Redshift interface library" ,
8991 long_description = long_description ,
92+ long_description_content_type = "text/markdown" ,
9093 author = "Amazon Web Services" ,
9194 author_email = "redshift-drivers@amazon.com" ,
9295 url = "https://github.com/aws/amazon-redshift-python-driver" ,
You can’t perform that action at this time.
0 commit comments