From 1c833d9d9129caf123abaed6c6169ae5703b4b00 Mon Sep 17 00:00:00 2001
From: Holger Nahrstaedt <holgernahrstaedt@gmx.de>
Date: Thu, 18 Jun 2020 18:08:54 +0200
Subject: [PATCH] Fix missing module in setup.py

---
 CHANGELOG.rst | 4 ++++
 setup.py      | 9 +++++----
 2 files changed, 9 insertions(+), 4 deletions(-)

diff --git a/CHANGELOG.rst b/CHANGELOG.rst
index 42735de9..cd9171fa 100644
--- a/CHANGELOG.rst
+++ b/CHANGELOG.rst
@@ -1,5 +1,9 @@
 Changelog
 =========
+0.24.1
+------
+* fixed missing module in setup.py
+
 0.24.0
 ------
 * new beemstorage module
diff --git a/setup.py b/setup.py
index 8a9029e2..06f60b30 100755
--- a/setup.py
+++ b/setup.py
@@ -16,7 +16,7 @@ except LookupError:
     ascii = codecs.lookup('ascii')
     codecs.register(lambda name, enc=ascii: {True: enc}.get(name == 'mbcs'))
 
-VERSION = '0.24.0'
+VERSION = '0.24.1'
 
 tests_require = ['mock >= 2.0.0', 'pytest', 'pytest-mock', 'parameterized']
 
@@ -73,9 +73,9 @@ if __name__ == '__main__':
         long_description=get_long_description(),
         download_url='https://github.com/holgern/beem/tarball/' + VERSION,
         author='Holger Nahrstaedt',
-        author_email='holger@nahrstaedt.de',
+        author_email='nahrstaedt@gmail.com',
         maintainer='Holger Nahrstaedt',
-        maintainer_email='holger@nahrstaedt.de',
+        maintainer_email='nahrstaedt@gmail.com',
         url='http://www.github.com/holgern/beem',
         keywords=['hive', 'steem', 'library', 'api', 'rpc'],
         packages=[
@@ -83,7 +83,8 @@ if __name__ == '__main__':
             "beemapi",
             "beembase",
             "beemgraphenebase",
-            "beemgrapheneapi"
+            "beemgrapheneapi",
+            "beemstorage"
         ],
         classifiers=[
             'License :: OSI Approved :: MIT License',
-- 
GitLab