From 81e29ea15b30931c274d96d2b6a24900df8eeca5 Mon Sep 17 00:00:00 2001 From: Alex Tzonkov <4975715+attzonko@users.noreply.github.com> Date: Fri, 23 Apr 2021 13:20:02 -0700 Subject: [PATCH] Fixing PyPi Tar File (Issue #202) --- MANIFEST.in | 2 ++ mmpy_bot/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/MANIFEST.in b/MANIFEST.in index 89670962..7536c6af 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,2 +1,4 @@ include README.md include AUTHORS.rst +include requirements.txt +include dev-requirements.txt diff --git a/mmpy_bot/__init__.py b/mmpy_bot/__init__.py index d457ae53..48c04272 100644 --- a/mmpy_bot/__init__.py +++ b/mmpy_bot/__init__.py @@ -10,7 +10,7 @@ from mmpy_bot.settings import Settings from mmpy_bot.wrappers import ActionEvent, Message, WebHookEvent -__version__ = "2.0.1" +__version__ = "2.0.2" __all__ = [ "__version__", diff --git a/setup.py b/setup.py index 9cc72a6f..83002b59 100644 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ def requires(filename: str): setup( name="mmpy_bot", - version="2.0.1", + version="2.0.2", author="Alex Tzonkov", author_email="alex.tzonkov@gmail.com", license="MIT",