IHaskell/ihaskell.cabal

172 lines
6.0 KiB
Plaintext
Raw Normal View History

-- The name of the package.
name: ihaskell
-- The package version. See the Haskell package versioning policy (PVP)
-- for standards guiding when and how versions should be incremented.
-- http://www.haskell.org/haskellwiki/Package_versioning_policy
-- PVP summary: +-+------- breaking API changes
-- | | +----- non-breaking API additions
-- | | | +--- code changes with no API change
2018-07-20 09:54:21 +02:00
version: 0.9.1.0
-- A short (one-line) description of the package.
synopsis: A Haskell backend kernel for the IPython project.
-- A longer description of the package.
description: IHaskell is a Haskell backend kernel for the IPython project. This allows using Haskell via
a console or notebook interface. Additional packages may be installed to provide richer data visualizations.
-- URL for the project homepage or repository.
2015-08-16 00:53:54 -07:00
homepage: http://github.com/gibiansky/IHaskell
-- The license under which the package is released.
2013-12-14 11:50:10 -08:00
license: MIT
-- The file containing the license text.
license-file: LICENSE
-- The package author(s).
author: Andrew Gibiansky
-- An email address to which users can send suggestions, bug reports, and
-- patches.
maintainer: andrew.gibiansky@gmail.com
-- A copyright notice.
-- copyright:
category: Development
2014-01-30 16:30:21 -08:00
build-type: Simple
-- Constraint on the version of Cabal needed to build this package.
cabal-version: >=1.16
data-files:
html/kernel.js
2018-07-18 16:18:38 +02:00
html/logo-64x64.svg
2013-12-14 14:22:58 -08:00
library
2014-01-03 00:10:15 -05:00
hs-source-dirs: src
default-language: Haskell2010
ghc-options: -Wall
2015-08-12 22:20:36 +02:00
build-depends:
2017-03-30 20:48:59 +07:00
aeson >=1.0,
base >=4.9,
base64-bytestring >=1.0,
bytestring >=0.10,
cereal >=0.3,
cmdargs >=0.10,
containers >=0.5,
directory -any,
filepath -any,
ghc >=8.0,
ghc-parser >=0.1.7,
ghc-paths >=0.1,
haskeline -any,
hlint >=1.9,
haskell-src-exts >=1.18,
http-client >= 0.4,
http-client-tls >= 0.2,
mtl >=2.1,
parsec -any,
process >=1.1,
random >=1.0,
shelly >=1.5,
split >= 0.2,
stm -any,
strict >=0.3,
system-argv0 -any,
text >=0.11,
transformers -any,
unix >= 2.6,
unordered-containers -any,
utf8-string -any,
uuid >=1.3,
vector -any,
2018-08-28 10:16:45 -04:00
ipython-kernel >=0.9.1,
ghc-boot >=8.0 && <8.7
2017-03-05 10:12:24 -05:00
2014-01-05 23:01:38 -05:00
exposed-modules: IHaskell.Display
IHaskell.Convert
IHaskell.Convert.Args
IHaskell.Convert.IpynbToLhs
IHaskell.Convert.LhsToIpynb
2014-01-05 23:01:38 -05:00
IHaskell.Eval.Completion
IHaskell.Eval.Inspect
2014-01-05 23:01:38 -05:00
IHaskell.Eval.Evaluate
IHaskell.Eval.Info
IHaskell.Eval.Lint
IHaskell.Eval.Parser
2014-01-07 22:48:01 -05:00
IHaskell.Eval.Hoogle
IHaskell.Eval.ParseShell
2015-06-02 11:42:48 +05:30
IHaskell.Eval.Widgets
IHaskell.Eval.Util
IHaskell.Publish
2014-01-05 23:01:38 -05:00
IHaskell.IPython
IHaskell.IPython.Stdin
2014-01-08 16:27:36 -05:00
IHaskell.Flags
2014-01-05 23:01:38 -05:00
IHaskell.Types
2014-02-28 16:19:37 -08:00
IHaskell.BrokenPackages
IHaskell.CSS
2014-01-05 23:01:38 -05:00
Paths_ihaskell
other-modules:
IHaskellPrelude
2015-05-29 13:14:49 +02:00
StringUtils
executable ihaskell
-- .hs or .lhs file containing the Main module.
main-is: Main.hs
2015-05-27 18:31:37 +02:00
hs-source-dirs: main
other-modules:
IHaskellPrelude
Paths_ihaskell
ghc-options: -threaded -rtsopts -Wall
-- Other library packages from which modules are imported.
default-language: Haskell2010
build-depends:
2015-05-27 18:31:37 +02:00
ihaskell -any,
base >=4.9 && < 4.13,
2015-05-27 18:31:37 +02:00
text >=0.11,
transformers -any,
ghc >=8.0 && < 8.7,
process >=1.1,
aeson >=0.7,
2015-05-27 18:31:37 +02:00
bytestring >=0.10,
containers >=0.5,
strict >=0.3,
unix >= 2.6,
2015-05-27 18:31:37 +02:00
directory -any,
2015-08-25 21:50:38 -07:00
ipython-kernel >=0.7
2015-05-27 18:31:37 +02:00
Test-Suite hspec
Type: exitcode-stdio-1.0
Ghc-Options: -threaded -Wall
Main-Is: Hspec.hs
hs-source-dirs: src/tests
other-modules:
IHaskell.Test.Eval
IHaskell.Test.Completion
IHaskell.Test.Util
IHaskell.Test.Parser
default-language: Haskell2010
build-depends:
base,
ihaskell,
here,
hspec,
2017-01-28 22:29:35 +11:00
hspec-contrib,
HUnit,
ghc,
ghc-paths,
transformers,
directory,
text,
shelly,
setenv
2013-12-14 11:50:10 -08:00
source-repository head
type: git
location: git://github.com/gibiansky/IHaskell.git