Skip to content
Snippets Groups Projects
Commit 1c833d9d authored by Holger's avatar Holger
Browse files

Fix missing module in setup.py

parent 4f899ab0
No related branches found
No related tags found
2 merge requests!5Taken current version of master branch in the https://github.com/holgern/beem,!4Original changes pushed to master at https://github.com/holgern/beem
Changelog
=========
0.24.1
------
* fixed missing module in setup.py
0.24.0
------
* new beemstorage module
......
......@@ -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',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment