From 7ce058e6fd3a7307e4ac88e855257a9e99cc7163 Mon Sep 17 00:00:00 2001 From: Ryan McGrath Date: Thu, 2 Apr 2020 22:58:15 -0700 Subject: [PATCH] Resolve issues with Pypi publishing (RST -> MD) and bump to 3.8.0 --- HISTORY.rst => HISTORY.md | 0 setup.py | 12 +++++------- 2 files changed, 5 insertions(+), 7 deletions(-) rename HISTORY.rst => HISTORY.md (100%) diff --git a/HISTORY.rst b/HISTORY.md similarity index 100% rename from HISTORY.rst rename to HISTORY.md diff --git a/setup.py b/setup.py index 0531221..0c0e758 100755 --- a/setup.py +++ b/setup.py @@ -8,8 +8,8 @@ try: except ImportError: from distutils.core import setup -__author__ = 'Ryan McGrath ' -__version__ = '3.7.0' +__author__ = 'Ryan McGrath ' +__version__ = '3.8.0' packages = [ 'twython', @@ -26,13 +26,11 @@ setup( install_requires=['requests>=2.1.0', 'requests_oauthlib>=0.4.0'], author='Ryan McGrath', author_email='ryan@venodesigns.net', - license=open('LICENSE').read(), + license='MIT', url='https://github.com/ryanmcgrath/twython/tree/master', keywords='twitter search api tweet twython stream', - description='Actively maintained, pure Python wrapper for the \ - Twitter API. Supports both normal and streaming Twitter APIs', - long_description=open('README.md').read() + '\n\n' + - open('HISTORY.md').read(), + description='Actively maintained, pure Python wrapper for the Twitter API. Supports both normal and streaming Twitter APIs', + long_description=open('README.md', encoding='utf-8').read() + '\n\n' +open('HISTORY.md', encoding='utf-8').read(), long_description_content_type='text/markdown', include_package_data=True, packages=packages,