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

name:                tex2txt
version:             0.1.0.0
synopsis:            LaTeX to plain-text conversion
description:         tex2txt converts LaTeX files to linguistic coherent plain-text which could be used for many natural language processing and analysis tasks. The primary aim of the tool is to help NLP community to simplify building large databases of NLP-ready texts from LaTeX sources. The tool can also be used as a system component when input is LaTeX text.
homepage:            http://textmining.lt/tex2txt/
license:             GPL-3
license-file:        LICENSE
author:              Vidas Daudaravicius
maintainer:          vidas.daudaravicius@vtex.lt
copyright:           VTeX, Vidas Daudaravicius
stability:           experimental
category:            Text
build-type:          Simple
-- extra-source-files:  
cabal-version:       >=1.10


library
  build-depends:   base >=4.7 && <4.8, parsec >=3.1 && <3.2, deepseq >=1.3 && <1.4, containers >=0.5 && <0.6
  exposed-modules: Text.Tex2txt
  default-language:    Haskell2010

executable tex2txt
  main-is:             Main.hs
  -- other-modules:       
  -- other-extensions:    
  build-depends:       base >=4.7 && <4.8, parsec >=3.1 && <3.2, deepseq >=1.3 && <1.4, containers >=0.5 && <0.6
  -- hs-source-dirs:      
  default-language:    Haskell2010