diff --git a/README.md b/README.md
new file mode 100644
--- /dev/null
+++ b/README.md
@@ -0,0 +1,11 @@
+# servant-auth-token-api
+
+[![Build Status](https://travis-ci.org/NCrashed/servant-auth-token-api.svg?branch=master)](https://travis-ci.org/NCrashed/servant-auth-token-api)
+
+The package provides abstract RESTful API for token based authorisation using [servant](http://haskell-servant.readthedocs.io/en/stable/). It contains only generic types and [servant-swagger](https://hackage.haskell.org/package/servant-swagger) instances. You may be interested in server/client side implementations:
+
+- [servant-auth-token](https://github.com/NCrashed/servant-auth-token) - server side implementation using SQL subdomain of [persistent](http://hackage.haskell.org/package/persistent).
+
+- servant-auth-token-client (not yet published) - client side implementation using [GHCJS](https://github.com/ghcjs/ghcjs) and [reflex-dom](https://hackage.haskell.org/package/reflex-dom)
+
+Also you can explore [swagger documentation](https://ncrashed.github.io/servant-auth-token-api/swagger-ui) for the API and view [markdown version of docs](https://github.com/NCrashed/servant-auth-token-api/blob/gh-pages/docs.markdown).
diff --git a/servant-auth-token-api.cabal b/servant-auth-token-api.cabal
--- a/servant-auth-token-api.cabal
+++ b/servant-auth-token-api.cabal
@@ -1,5 +1,5 @@
 name:                servant-auth-token-api
-version:             0.1.0.0
+version:             0.1.0.1
 synopsis:            Servant based API for token based authorisation
 description:         Please see README.md
 homepage:            https://github.com/ncrashed/servant-auth-token-api#readme
@@ -10,7 +10,8 @@
 copyright:           2016 Anton Gushcha
 category:            Web
 build-type:          Simple
--- extra-source-files:
+extra-source-files:
+  README.md
 cabal-version:       >=1.10
 
 library
