name:                Genbank
-- The package version.  See the Haskell package versioning policy (PVP) 
-- for standards guiding when and how versions should be incremented.
-- http://www.haskell.org/haskellwiki/Package_versioning_policy
-- PVP summary:      +-+------- breaking API changes
--                   | | +----- non-breaking API additions
--                   | | | +--- code changes with no API change
version:             1.0.1
synopsis:            Libary for processing the NCBI genbank format
description:         Haskell cabal Genbank libary contains tools, parser and datastructures for the NCBI (National Center for Biotechnology Information) Genbank format.
                     .
                     For more information on genbank refer to: <http://www.ncbi.nlm.nih.gov/genbank/>
                     .
                     For a sample genbank record see: <http://www.ncbi.nlm.nih.gov/Sitemap/samplerecord.html>
                     .
                     "Bio.GenbankData" - Datastructures for Genbank format 
                     .
                     Contains Haskell datastructures for Genbank format and for contained features, subfeatures
                     .
                     "Bio.GenbankParser" - Parse Genbank format
                     .
                     Contains Haskell functions to parse Genbank format from files or internal Strings.
                     .
                     "Bio.GenbankTools" - Tools for processing Genbank 
                     .
                     Contains Haskell functions to extract nucleotide sequences for features 
extra-source-files:
  README.md
                     
license:             GPL
license-file:        LICENSE
author:              Florian Eggenhofer
maintainer:          egg@tbi.univie.ac.at
-- copyright:           
category:            Bioinformatics
build-type:          Simple
cabal-version:       >=1.8

source-repository head
  type:     git
  location: https://github.com/eggzilla/Genbank

source-repository this
  type:     git
  location: https://github.com/eggzilla/Genbank/tree/1.0.1
  tag:      v1.0.1

library
  -- Modules exported by the library.
  exposed-modules:   Bio.GenbankParser, Bio.GenbankData, Bio.GenbankTools
  
  -- Other library packages from which modules are imported.
  build-depends:       base >=4.5 && <5, parsec, split, bytestring, biocore, biofasta
  
  -- Directories containing source files.
  hs-source-dirs:      src