packages feed

octopus-0.0.2.0: octopus.cabal

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

name:                octopus
version:             0.0.2.0
synopsis:            Lisp with more dynamism, more power, more simplicity.
description:         Octopus is a highly dynamic programming language with an astounding (I think)
                     power-to-weight ratio (expressivity-to-complexity). With just a handful of
                     simple primitives, Octopus provides a complete programming environment. Its
                     main focus is on complete programmer control, not on performance or static
                     analysis. While the user can shoot themselves, the most natural methods will
                     be the most reasonable.
homepage:            https://github.com/Zankoku-Okuno/octopus/
license:             GPL-3
license-file:        LICENSE
author:              Zankoku Okuno
maintainer:          zankoku.okuno@gmail.com
-- copyright:           
category:            Language
build-type:          Simple
cabal-version:       >=1.8

library
  exposed-modules:     Language.Octopus,
                       Language.Octopus.Data,
                       Language.Octopus.Data.Shortcut
                       Language.Octopus.Parser,
                       Language.Octopus.Parser.Preprocess,
                       Language.Octopus.Basis,
                       Language.Octopus.Primitive,
                       Language.Octopus.Libraries
  build-depends:       base ==4.6.*,
                       bytestring ==0.10.*,
                       text ==0.11.*,
                       containers ==0.5.*,
                       array ==0.4.*,
                       symbol ==0.2.1,
                       mtl ==2.1.*,
                       parsec ==3.1.*,
                       hexpr ==0.0.0.1

executable octi
  main-is:             main.hs
  -- other-modules:       
  build-depends:       base ==4.6.*,
                       bytestring ==0.10.*,
                       text ==0.11.*,
                       containers ==0.5.*,
                       array ==0.4.*,
                       symbol ==0.2.1,
                       mtl ==2.1.*,
                       parsec ==3.1.*,
                       hexpr ==0.0.0.1