mirror of
https://github.com/IHaskell/IHaskell.git
synced 2025-04-14 10:26:07 +00:00
Migrating to external ipython package.
This commit is contained in:
parent
e929f35aa2
commit
06f89d8fe0
@ -92,7 +92,7 @@ library
|
||||
utf8-string -any,
|
||||
uuid >=1.3,
|
||||
vector -any,
|
||||
zeromq4-haskell >=0.1
|
||||
ipython-kernel >=0.2
|
||||
|
||||
exposed-modules: IHaskell.Display
|
||||
IHaskell.Convert
|
||||
@ -111,13 +111,6 @@ library
|
||||
IHaskell.Flags
|
||||
IHaskell.Types
|
||||
IHaskell.BrokenPackages
|
||||
IHaskell.IPython.Kernel
|
||||
IHaskell.IPython.Types
|
||||
IHaskell.IPython.ZeroMQ
|
||||
IHaskell.IPython.Stdin
|
||||
IHaskell.IPython.Message.Writer
|
||||
IHaskell.IPython.Message.Parser
|
||||
IHaskell.IPython.Message.UUID
|
||||
Paths_ihaskell
|
||||
-- other-modules:
|
||||
-- Paths_ihaskell
|
||||
@ -144,6 +137,7 @@ executable IHaskell
|
||||
ihaskell -any,
|
||||
MissingH >=1.2,
|
||||
text -any,
|
||||
ipython-kernel >= 0.2,
|
||||
unix >= 2.6
|
||||
|
||||
Test-Suite hspec
|
||||
@ -193,8 +187,8 @@ Test-Suite hspec
|
||||
utf8-string -any,
|
||||
uuid >=1.3,
|
||||
vector -any,
|
||||
zeromq4-haskell >=0.1,
|
||||
setenv ==0.1.*
|
||||
setenv ==0.1.*,
|
||||
ipython-kernel >= 0.2
|
||||
|
||||
|
||||
default-extensions:
|
||||
|
20
ipython-kernel/LICENSE
Normal file
20
ipython-kernel/LICENSE
Normal file
@ -0,0 +1,20 @@
|
||||
The MIT License (MIT)
|
||||
|
||||
Copyright (c) 2013 Andrew Gibiansky
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
||||
this software and associated documentation files (the "Software"), to deal in
|
||||
the Software without restriction, including without limitation the rights to
|
||||
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
||||
the Software, and to permit persons to whom the Software is furnished to do so,
|
||||
subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
||||
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
||||
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
||||
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
||||
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
37
ipython-kernel/ipython-kernel.cabal
Normal file
37
ipython-kernel/ipython-kernel.cabal
Normal file
@ -0,0 +1,37 @@
|
||||
name: ipython-kernel
|
||||
version: 0.2.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
|
||||
|
||||
library
|
||||
exposed-modules: IHaskell.IPython.Kernel
|
||||
IHaskell.IPython.Types
|
||||
IHaskell.IPython.ZeroMQ
|
||||
IHaskell.IPython.Stdin
|
||||
IHaskell.IPython.Message.Writer
|
||||
IHaskell.IPython.Message.Parser
|
||||
IHaskell.IPython.Message.UUID
|
||||
-- other-modules:
|
||||
other-extensions: OverloadedStrings
|
||||
hs-source-dirs: src
|
||||
default-language: Haskell2010
|
||||
build-depends: base >=4.6 && < 4.8,
|
||||
aeson >=0.6 && < 0.9,
|
||||
bytestring >=0.10,
|
||||
cereal >=0.3,
|
||||
containers >=0.5,
|
||||
text >=0.11,
|
||||
unix >=2.6,
|
||||
uuid >=1.3,
|
||||
zeromq4-haskell >=0.1
|
Loading…
x
Reference in New Issue
Block a user