packages feed

JuPyTer-notebook-0.1.0.0: JuPyTer-notebook.cabal

-- Initial IPyNb.cabal generated by cabal init.  For further documentation,
--  see http://haskell.org/cabal/users-guide/

name:                JuPyTer-notebook
version:             0.1.0.0
synopsis:            JuPyTer notebook parser
description:         JuPyTer also called IPython notebook.
                     .
                     It is cross-language interactive data science platform
                     that allows for interactive editing of code and visualizing its results.
                     .
                     This library allows to directly parse `.ipynb` files, and process them.
homepage:            http://github.com/mgajda/ipynb
cabal-version:       >=1.10
license:             BSD3
license-file:        LICENSE
author:              Michal J. Gajda
maintainer:          migamake@migamake.com
category:            Data
build-type:          Simple
extra-source-files:  ChangeLog.md
                     README.md
source-repository head
  type:     git
  location: https://github.com/mgajda/jupyter-notebook.git

library
  build-depends:       base          >=4.9 && <4.10,
                       json-autotype >=1.0 && <2.0
  hs-source-dirs:      src
  exposed-modules:     Data.JuPyTer
  default-language:    Haskell2010

executable jupyter-extract
  hs-source-dirs:      src
  main-is:             Main.hs
  --other-modules:       Data.
  --other-extensions:    TemplateHaskell,
  build-depends:       base                 >=4.3  && <4.11,
                       text                 >=1.0  && <1.3,
                       json-autotype        >=1.0  && <1.1,
                       aeson                >=1.0  && <1.3,
                       bytestring           >=0.10 && <1.0,
                       JuPyTer-notebook
  default-language:    Haskell2010