IHaskell/ipython-kernel/ipython-kernel.cabal
Erik de Castro Lopo 196ccac96d ipython-kernel: Switch on -Wall and fix all warnings
Fixing these warnings required changes to the file names of the `MessageHeader`
struct which makes this commit an API change. The version in the cabal file
has been bumped accordingly.
2018-09-01 22:42:35 +10:00

87 lines
2.7 KiB
Plaintext

name: ipython-kernel
version: 0.10.0.0
synopsis: A library for creating kernels for IPython frontends
description: ipython-kernel is a library for communicating with frontends for the interactive IPython framework. It is used extensively in IHaskell, the interactive Haskell environment.
homepage: http://github.com/gibiansky/IHaskell
license: MIT
license-file: LICENSE
author: Andrew Gibiansky
maintainer: andrew.gibiansky@gmail.com
category: Development
build-type: Simple
cabal-version: >=1.16
data-dir: example-data
data-files: calc_profile.tar
flag examples
description: Build example programs
default: False
library
ghc-options: -Wall
exposed-modules: IHaskell.IPython.Kernel
IHaskell.IPython.Types
IHaskell.IPython.ZeroMQ
IHaskell.IPython.Message.Parser
IHaskell.IPython.Message.UUID
IHaskell.IPython.EasyKernel
other-extensions: OverloadedStrings
hs-source-dirs: src
default-language: Haskell2010
build-depends: base >=4.9 && <5,
aeson ,
bytestring ,
cereal ,
cereal-text ,
containers ,
cryptonite ,
directory ,
temporary ,
filepath ,
process ,
memory ,
mtl ,
text ,
transformers ,
unordered-containers,
uuid ,
zeromq4-haskell
-- Example program
executable simple-calc-example
hs-source-dirs: examples
main-is: Calc.hs
default-language: Haskell2010
build-depends: ipython-kernel ,
base ,
filepath ,
mtl ,
parsec ,
text ,
transformers
if !flag(examples)
buildable: False
executable fun-calc-example
hs-source-dirs: examples
main-is: Simple.hs
default-language: Haskell2010
build-depends: ipython-kernel ,
base ,
filepath ,
mtl ,
parsec ,
text ,
transformers
if !flag(examples)
buildable: False