Resolve issues with Pypi publishing (RST -> MD) and bump to 3.8.0

This commit is contained in:
Ryan McGrath 2020-04-02 22:58:15 -07:00
parent 33fccac46b
commit 7ce058e6fd
No known key found for this signature in database
GPG key ID: 811674B62B666830
2 changed files with 5 additions and 7 deletions

View file

@ -8,8 +8,8 @@ try:
except ImportError: except ImportError:
from distutils.core import setup from distutils.core import setup
__author__ = 'Ryan McGrath <ryan@venodesigns.net>' __author__ = 'Ryan McGrath <ryan@rymc.io>'
__version__ = '3.7.0' __version__ = '3.8.0'
packages = [ packages = [
'twython', 'twython',
@ -26,13 +26,11 @@ setup(
install_requires=['requests>=2.1.0', 'requests_oauthlib>=0.4.0'], install_requires=['requests>=2.1.0', 'requests_oauthlib>=0.4.0'],
author='Ryan McGrath', author='Ryan McGrath',
author_email='ryan@venodesigns.net', author_email='ryan@venodesigns.net',
license=open('LICENSE').read(), license='MIT',
url='https://github.com/ryanmcgrath/twython/tree/master', url='https://github.com/ryanmcgrath/twython/tree/master',
keywords='twitter search api tweet twython stream', keywords='twitter search api tweet twython stream',
description='Actively maintained, pure Python wrapper for the \ description='Actively maintained, pure Python wrapper for the Twitter API. Supports both normal and streaming Twitter APIs',
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=open('README.md').read() + '\n\n' +
open('HISTORY.md').read(),
long_description_content_type='text/markdown', long_description_content_type='text/markdown',
include_package_data=True, include_package_data=True,
packages=packages, packages=packages,