From b75d052c17503ac13c70262387e9740b9c1482b1 Mon Sep 17 00:00:00 2001 From: poruri sai rahul Date: Thu, 10 Oct 2019 15:26:06 +0100 Subject: [PATCH 1/2] Release version 4.5.0 of apptools modified: setup.py --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 23f17fc0d..b91f14fb4 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ MINOR = 5 MICRO = 0 -IS_RELEASED = False +IS_RELEASED = True VERSION = '%d.%d.%d' % (MAJOR, MINOR, MICRO) From dab3e4499aa80d669de57987043c3930970dfad3 Mon Sep 17 00:00:00 2001 From: Poruri Sai Rahul Date: Thu, 10 Oct 2019 15:58:07 +0100 Subject: [PATCH 2/2] Add long_description_content_type in setup.py (#108) * FIX : Add long_description_content_type which was missing from setup.py modified: setup.py * Add changelog entry. (cherry picked from commit 0b745d074243622eeccdd98522e2e0d8997d90b4) --- CHANGES.txt | 1 + setup.py | 1 + 2 files changed, 2 insertions(+) diff --git a/CHANGES.txt b/CHANGES.txt index e66ffe913..c78fdc395 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -6,6 +6,7 @@ Version 4.5.0 Released : 10 October 2019 +* Add missing `long_description_content_type` field in setup. (#108) * Remove use of `2to3`. (#90) * Use etstool for CI tasks. Setup travis macos and appveyor CI. (#92) * Temporarily change cwd when running tests. (#104) diff --git a/setup.py b/setup.py index b91f14fb4..0a902b05b 100644 --- a/setup.py +++ b/setup.py @@ -123,6 +123,7 @@ def write_version_py(filename='apptools/_version.py'): """.splitlines() if len(c.strip()) > 0], description='application tools', long_description=open('README.rst').read(), + long_description_content_type="text/x-rst", include_package_data=True, package_data={'apptools': ['help/help_plugin/*.ini', 'help/help_plugin/action/images/*.png',