Skip to content

Commit

Permalink
Merge pull request sripathikrishnan#9 from clofresh/master
Browse files Browse the repository at this point in the history
bundle rdb and redis-profiler scripts with the egg
  • Loading branch information
sripathikrishnan committed Jun 7, 2012
2 parents d406756 + 733aabc commit 80bd741
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 2 deletions.
2 changes: 1 addition & 1 deletion rdbtools/__init__.py
Expand Up @@ -2,7 +2,7 @@
from rdbtools.callbacks import JSONCallback, DiffCallback
from rdbtools.memprofiler import MemoryCallback, PrintAllKeys, StatsAggregator

__version__ = '0.1.1'
__version__ = '0.1.2'
VERSION = tuple(map(int, __version__.split('.')))

__all__ = [
Expand Down
Empty file added rdbtools/cli/__init__.py
Empty file.
File renamed without changes.
File renamed without changes.
File renamed without changes.
8 changes: 7 additions & 1 deletion setup.py
Expand Up @@ -19,8 +19,14 @@
'maintainer_email' : 'Sripathi.Krishnan@gmail.com',
'keywords' : ['Redis', 'RDB', 'Export', 'Dump'],
'license' : 'MIT',
'packages' : ['rdbtools'],
'packages' : ['rdbtools', 'rdbtools.cli'],
'package_data' : {'rdbtools.cli': ['*.template']},
'test_suite' : 'tests.all_tests',
'entry_points' : {
'console_scripts' : [
'rdb = rdbtools.cli.rdb:main',
'redis-profiler = rdbtools.cli.redis_profiler:main'],
},
'classifiers' : [
'Development Status :: 2 - Development/Experimental',
'Environment :: Console',
Expand Down

0 comments on commit 80bd741

Please sign in to comment.