From 8dfb367cb50599a1c8b37d88e64e37cc56c7478e Mon Sep 17 00:00:00 2001 From: eskin22 Date: Mon, 4 Mar 2024 16:24:17 -0600 Subject: [PATCH] updating GitHub publish workflow to include README content type --- setup.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 30660a6..36a5bea 100644 --- a/setup.py +++ b/setup.py @@ -1,5 +1,9 @@ from setuptools import setup, find_packages +with open("README.md", "r", encoding='utf-8') as fh: + long_description = fh.read() + + setup( name='upsetty', version='0.1.0', @@ -10,5 +14,7 @@ 'numpy' ], author='eskin22', - description='An upset plot creation package using Plotly' + description='An upset plot creation package using Plotly', + long_description=long_description, + long_description_content_type="text/markdown" ) \ No newline at end of file