From f7374338123d67ac6ddb3095a5701b66925898c5 Mon Sep 17 00:00:00 2001 From: Konstantin Togoi Date: Fri, 8 May 2020 01:54:37 +0300 Subject: [PATCH] bump version to 0.1.1.post1 --- aiomailru/__init__.py | 2 +- docs/source/conf.py | 2 +- setup.py | 8 +++++++- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/aiomailru/__init__.py b/aiomailru/__init__.py index 8f958a8..10d628d 100644 --- a/aiomailru/__init__.py +++ b/aiomailru/__init__.py @@ -30,4 +30,4 @@ from .api import API -__version__ = '0.1.1' +__version__ = '0.1.1.post1' diff --git a/docs/source/conf.py b/docs/source/conf.py index ef89925..853fb2a 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -22,7 +22,7 @@ author = 'Konstantin Togoi' # The full version, including alpha/beta/rc tags -release = '0.1.1' +release = '0.1.1.post1' # -- General configuration --------------------------------------------------- diff --git a/setup.py b/setup.py index 17f8c9b..7989e8e 100644 --- a/setup.py +++ b/setup.py @@ -3,14 +3,17 @@ setup( name='aiomailru', - version='0.1.1', + version='0.1.1.post1', author='Konstantin Togoi', author_email='konstantin.togoi@gmail.com', url='https://github.com/KonstantinTogoi/aiomailru', + project_urls={'Documentation': 'https://aiomailru.readthedocs.io'}, + download_url='https://pypi.org/project/aiomailru/', description='Python Mail.Ru API wrapper', long_description=open('README.rst').read(), license='BSD', packages=find_packages(), + platforms=['Any'], python_requires='>=3.5', install_requires=['aiohttp>=3.0.0', 'yarl'], setup_requires=['pytest-runner'], @@ -18,7 +21,9 @@ extras_require={'scrapers': ['pyppeteer<=0.0.25']}, keywords=['mail.ru rest api scrapers asyncio'], classifiers=[ + 'Development Status :: 5 - Production/Stable', 'Environment :: Web Environment', + 'Framework :: AsyncIO', 'Intended Audience :: Developers', 'License :: OSI Approved :: BSD License', 'Operating System :: OS Independent', @@ -28,6 +33,7 @@ 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3 :: Only', + 'Topic :: Internet', 'Topic :: Internet :: WWW/HTTP', 'Topic :: Software Development :: Libraries :: Python Modules', ]