name:                noTurtle
version:             0.1.0.0
synopsis:            Proyecto final de Análisis de Lenguaje de Progamación
description:         Intérprete interactivo de una versión reducida del lenguaje de programación Logo 
homepage:            https://bitbucket.org/BitJav/no-turtle
license:             GPL-3
license-file:        LICENSE
author:              Javier
maintainer:          javbonet@gmail.com
copyright:           2017 Javier Bonet
category:            Game
build-type:          Simple
extra-source-files:  stack.yaml
extra-doc-files:     README.md
cabal-version:       >=1.18

executable             noTurtle
  ghc-options:         -threaded
  main-is:             Main.hs
  other-modules:       TypesAndConstants,
                       ProgramLogic,
                       BasicParsers,
                       Parsers,
                       Stack,
                       Draw,
                       PrettyPrinting
  -- other-extensions:    
  build-depends:       base >= 4.8 && <= 6,
                       gtk >= 0.14,
                       cairo >= 0.13,
                       mtl >= 2.2,
                       haskeline >= 0.7,
                       megaparsec >= 6.0,
                       X11 > 1.6,
                       directory >= 1.3,
                       filepath >= 1.4.1.1
  -- hs-source-dirs:      
  default-language:    Haskell2010

source-repository head
 type:                 git
 location:             https://bitbucket.org/BitJav/no-turtle