Skip to content

Commit 0565dbb

Browse files
Putting a static long description in setup.py and incrementing version in init.py
1 parent b44e210 commit 0565dbb

File tree

2 files changed

+16
-5
lines changed

2 files changed

+16
-5
lines changed

rdbtools/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
from rdbtools.callbacks import JSONCallback, DiffCallback
33
from rdbtools.memprofiler import MemoryCallback, PrintAllKeys, StatsAggregator
44

5-
__version__ = '0.1.3'
5+
__version__ = '0.1.5'
66
VERSION = tuple(map(int, __version__.split('.')))
77

88
__all__ = [

setup.py

+15-4
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,20 @@
22
import os
33
from rdbtools import __version__
44

5-
f = open(os.path.join(os.path.dirname(__file__), 'README.md'))
6-
long_description = f.read()
7-
f.close()
5+
long_description = '''
6+
Parse Redis dump.rdb files, Analyze Memory, and Export Data to JSON
7+
8+
Rdbtools is a parser for Redis' dump.rdb files. The parser generates events similar to an xml sax parser, and is very efficient memory wise.
9+
10+
In addition, rdbtools provides utilities to :
11+
12+
1. Generate a Memory Report of your data across all databases and keys
13+
2. Convert dump files to JSON
14+
3. Compare two dump files using standard diff tools
15+
16+
Rdbtools is written in Python, though there are similar projects in other languages. See FAQs (https://github.com/sripathikrishnan/redis-rdb-tools/wiki/FAQs) for more information.
17+
'''
18+
819

920
sdict = {
1021
'name' : 'rdbtools',
@@ -29,7 +40,7 @@
2940
'redis-profiler = rdbtools.cli.redis_profiler:main'],
3041
},
3142
'classifiers' : [
32-
'Development Status :: 2 - Development/Experimental',
43+
'Development Status :: 4 - Beta',
3344
'Environment :: Console',
3445
'Intended Audience :: Developers',
3546
'License :: OSI Approved :: MIT License',

0 commit comments

Comments
 (0)