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",