packages feed

doi-0.0.1: doi.cabal

name: doi
version: 0.0.1
cabal-version: >=1.10
build-type: Simple
license: MIT
license-file: LICENSE
maintainer: Johannes Gerer <oss@johannesgerer.com>
stability: Experimental
homepage: http://johannesgerer.com/doi
synopsis: Automatic Bibtex and fulltext of scientific articles
description:
    Extract Bibtex entries and download fulltext of scientific articles automatically for a given DOI or URL
    .
    See <https://github.com/johannesgerer/doi Readme> on Github.
category: Database
author: Johannes Gerer

library
    exposed-modules:
        DOI
        BibTeX
    build-depends:
        MissingH >=1.4.0.1 && <1.5,
        async >=2.1.1 && <2.2,
        base >=4.9.0.0 && <4.10,
        bibtex >=0.1.0.6 && <0.2,
        directory >=1.2.6.2 && <1.3,
        filepath >=1.4.1.0 && <1.5,
        haskeline >=0.7.3.0 && <0.8,
        optparse-applicative >=0.12.1.0 && <0.13,
        parsec >=3.1.11 && <3.2,
        process >=1.4.2.0 && <1.5,
        regex-base >=0.93.2 && <0.94,
        regex-compat >=0.95.1 && <0.96,
        regex-tdfa >=1.2.2 && <1.3,
        safe >=0.3.10 && <0.4,
        strict >=0.3.2 && <0.4,
        tagsoup ==0.14.*,
        temporary >=1.2.0.4 && <1.3,
        time >=1.6.0.1 && <1.7,
        transformers >=0.5.2.0 && <0.6,
        utility-ht >=0.0.12 && <0.1,
        urlencoded >=0.4.1 && <0.5
    default-language: Haskell2010

executable doi
    main-is: main.hs
    build-depends:
        MissingH >=1.4.0.1 && <1.5,
        async >=2.1.1 && <2.2,
        base >=4.9.0.0 && <4.10,
        bibtex >=0.1.0.6 && <0.2,
        directory >=1.2.6.2 && <1.3,
        filepath >=1.4.1.0 && <1.5,
        haskeline >=0.7.3.0 && <0.8,
        optparse-applicative >=0.12.1.0 && <0.13,
        parsec >=3.1.11 && <3.2,
        process >=1.4.2.0 && <1.5,
        regex-base >=0.93.2 && <0.94,
        regex-compat >=0.95.1 && <0.96,
        regex-tdfa >=1.2.2 && <1.3,
        safe >=0.3.10 && <0.4,
        strict >=0.3.2 && <0.4,
        tagsoup ==0.14.*,
        temporary >=1.2.0.4 && <1.3,
        time >=1.6.0.1 && <1.7,
        transformers >=0.5.2.0 && <0.6,
        utility-ht >=0.0.12 && <0.1,
        urlencoded >=0.4.1 && <0.5
    default-language: Haskell2010
    other-modules:
        BibTeX
        DOI