diff --git a/LICENSE b/LICENSE
new file mode 100644
--- /dev/null
+++ b/LICENSE
@@ -0,0 +1,28 @@
+
+  Quiver combinators for cellular CSV data processing
+  ===================================================
+
+    Copyright © 2015 Patryk Zadarnowski «pat@jantar.org».
+    All rights reserved.
+
+  Redistribution and use in source and binary forms, with or without
+  modification, are permitted provided that the following conditions
+  are met: ➀ Redistributions of source code must retain the above
+  copyright notice, this list of conditions and the following disclaimer.
+  ➁ Redistributions in binary form must reproduce the above copyright notice,
+  this list of conditions and the following disclaimer in the documentation
+  and/or other materials provided with the distribution. ➂ The name of any
+  author may not be used to endorse or promote products derived from this
+  software without their specific prior written permission.
+
+  THIS SOFTWARE IS PROVIDED “AS IS” AND ANY EXPRESS OR IMPLIED WARRANTIES,
+  INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
+  AND FITNESS FOR A PARTICULAR PURPOSE, ARE DISCLAIMED. IN NO EVENT SHALL
+  THE AUTHORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
+  EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
+  PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA OR PROFITS;
+  OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
+  WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
+  OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+  ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
diff --git a/Setup.hs b/Setup.hs
new file mode 100644
--- /dev/null
+++ b/Setup.hs
@@ -0,0 +1,3 @@
+#! /usr/bin/env runhaskell
+import Distribution.Simple
+main = defaultMain
diff --git a/quiver-csv.cabal b/quiver-csv.cabal
new file mode 100644
--- /dev/null
+++ b/quiver-csv.cabal
@@ -0,0 +1,46 @@
+name:           quiver-csv
+version:        0.0.0.1
+synopsis:       Quiver combinators for cellular CSV data processing
+homepage:       https://github.com/zadarnowski/quiver-csv
+category:       Control
+stability:      alpha
+
+author:         Patryk Zadarnowski
+maintainer:     Patryk Zadarnowski <pat@jantar.org>
+
+copyright:      Copyright (c) 2015 Patryk Zadarnowski
+
+description:
+
+    This library provides an efficient pipes-based implementation
+    of a cellular CSV codec designed for fast streaming of data
+    with guaranteed constant memory usage.
+
+cabal-version:  >= 1.18
+build-type:     Simple
+license:        BSD3
+license-file:   LICENSE
+
+source-repository head
+  type:         git
+  location:     https://github.com/zadarnowski/quiver-csv.git
+
+source-repository this
+  type:         git
+  location:     https://github.com/zadarnowski/quiver-csv.git
+  tag:          0.0.0.1
+
+library
+  hs-source-dirs:   src
+  default-language: Haskell2010
+  ghc-options:      -Wall -fno-warn-unused-do-bind -fno-warn-missing-signatures
+
+  exposed-modules:
+    Control.Quiver.CSV
+
+  build-depends:
+    base                    >= 4.8 && < 5,
+    bytestring              >= 0.10.6.0,
+    data-cell               >= 1.0.0.2,
+    quiver                  >= 0.0.0.6,
+    quiver-bytestring       >= 0.0.0.1
diff --git a/src/Control/Quiver/CSV.lhs b/src/Control/Quiver/CSV.lhs
new file mode 100644
--- /dev/null
+++ b/src/Control/Quiver/CSV.lhs
@@ -0,0 +1,28 @@
+> -- | Module:    Control.Quiver.CSV
+> -- Description: Quiver CSV codec
+> -- Copyright:   © 2015 Patryk Zadarnowski <pat@jantar.org>
+> -- License:     BSD3
+> -- Maintainer:  pat@jantar.org
+> -- Stability:   experimental
+> -- Portability: portable
+> --
+> -- Aan efficient Quiver-based implementation
+> -- of a cellular CSV encoder and decoder,
+> -- designed for fast streaming of data
+> -- with guaranteed constant memory usage.
+
+> {-# LANGUAGE PatternSynonyms #-}
+
+> module Control.Quiver.CSV (
+>   ParseResult,
+>    pattern ParseIncomplete,
+>    pattern ParseComplete,
+>    pattern ParseFailed,
+>   ParseError (..),
+>   decodeCSV, decodeLazyCSV,
+>   encodeCSV, encodeLazyCSV,
+> ) where
+
+> import Control.Quiver.CSV.Decoder
+> import Control.Quiver.CSV.Encoder
+> import Control.Quiver.CSV.Extras
