From 7974c0f917449437e009974138c035f57617c94d Mon Sep 17 00:00:00 2001 From: Kevin Froman Date: Fri, 1 Mar 2019 00:14:57 -0600 Subject: [PATCH] added readme and change py version in travis --- .travis.yml | 2 +- README.md | 11 +++++++++++ 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index adf4ff7..8945aea 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,4 +1,4 @@ language: python python: - - "3.7.1" + - "3.7" script: make test \ No newline at end of file diff --git a/README.md b/README.md index e69de29..53f5c8c 100644 --- a/README.md +++ b/README.md @@ -0,0 +1,11 @@ +

DeadSimpleKV

+ +[![Build Status](https://travis-ci.org/beardog108/DeadSimpleKV.svg?branch=master)](https://travis-ci.org/beardog108/DeadSimpleKV) + +As the name implies, this is merely a simple key-value store for Python. + +Not counting comments and tests, it is less than 100 lines of code. + +It doesn't do anything crazy. It just takes json serializable data and writes it to disk. + +You can control where and when to read/write, and that's it.