Skip to content

Commit

Permalink
Prepare for pip publishing
Browse files Browse the repository at this point in the history
  • Loading branch information
misterion committed Feb 9, 2016
1 parent 47b9f55 commit a11bbf9
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 9 deletions.
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
language: python
python:
- "3.4"
- "3.5"

script: python run_tests
Expand Down
3 changes: 3 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
* 0.1.0
* Initial version
* Strings, Hash, Set, List are supported
4 changes: 4 additions & 0 deletions INSTALL
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
Please use
python setup.py install

To report errors or create a new issue on Github use https://github.com/gamenet/redis-memory-analyzer/issues
4 changes: 4 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
include CHANGES
include INSTALL
include LICENSE
include README.md
7 changes: 0 additions & 7 deletions main.py
Original file line number Diff line number Diff line change
@@ -1,7 +0,0 @@
import sys
import statistics

from rma.RmaApplication import RmaApplication

app = RmaApplication()
app.run({'host': '192.168.1.133', 'port': 6379, 'match': '*'})
2 changes: 1 addition & 1 deletion rma/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from rma.application import RmaApplication
from rma.redis import RmaRedis

__version__ = '0.2.1'
__version__ = '0.1.0'
VERSION = tuple(map(int, __version__.split('.')))

__all__ = ['RmaApplication']

0 comments on commit a11bbf9

Please sign in to comment.