Skip to content

Commit

Permalink
re-version
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonCqk committed Mar 5, 2018
1 parent 0dfd717 commit e7102ed
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 11 deletions.
9 changes: 2 additions & 7 deletions README.rst
Original file line number Diff line number Diff line change
@@ -1,15 +1,10 @@
.. figure:: https://github.com/SimonCqk/cannondb/blob/master/logo/cannon.jpg?raw=true
:alt: logo

logo

CannonDB
========

|Build Status| |language| |license|

**``CannonDB`` is a lightweight but powerful key-value database designed
for human beings.**
``CannonDB`` is a lightweight but powerful key-value database designed
for human beings.

Features
~~~~~~~~
Expand Down
2 changes: 1 addition & 1 deletion cannondb/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from cannondb.database import CannonDB
from cannondb.storages import FileStorage, MemoryStorage

__version__ = '1.0.0'
__version__ = '1.0.2'

__all__ = ('CannonDB', 'FileStorage', 'MemoryStorage')

Expand Down
4 changes: 1 addition & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ def open_local(paths: list, mode='r', encoding='utf-8'):
os.path.abspath(os.path.dirname(__file__)),
*paths
)

return codecs.open(path, mode, encoding)


Expand All @@ -34,7 +33,7 @@ def open_local(paths: list, mode='r', encoding='utf-8'):
author='SimonCqk',
author_email='[email protected]',
description='CannonDB is a lightweight but powerful key-value database created for human beings.',
keywords='database key-value python nosql',
keywords=['database', 'key-value', 'python', 'nosql'],
long_description=long_description,
install_requires=[
'rwlock'
Expand All @@ -55,6 +54,5 @@ def open_local(paths: list, mode='r', encoding='utf-8'):
'Topic :: Communications :: Email',
'Topic :: Database :: Database Engines/Servers',
'Topic :: Software Development :: Libraries :: Python Modules',

]
)

0 comments on commit e7102ed

Please sign in to comment.