From 48bd7f8d048b447939db06018dde8c08a57b120e Mon Sep 17 00:00:00 2001 From: Matthew Andres Moreno Date: Thu, 28 Dec 2023 23:59:19 -0500 Subject: [PATCH] Drop HISTORY from long_description It's breaking the deploy --- setup.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/setup.py b/setup.py index 04a032c..4eaa717 100644 --- a/setup.py +++ b/setup.py @@ -7,9 +7,6 @@ with open('README.rst') as readme_file: readme = readme_file.read() -with open('HISTORY.rst') as history_file: - history = history_file.read() - requirements = [ 'keyname', 'matplotlib', @@ -41,7 +38,7 @@ description="teeplot automatically saves a copy of rendered Jupyter notebook plots", install_requires=requirements, license="MIT license", - long_description=readme + '\n\n' + history, + long_description=readme, include_package_data=True, keywords='teeplot', name='teeplot',