packages feed

cookbook-3.0.1.1: cookbook.cabal

name:                cookbook

-- PVP summary:      +-+------- breaking API changes
--                   | | +----- non-breaking API additions
--                   | | | +--- code changes with no API change
version:             3.0.1.1
synopsis:    Tiered general-purpose libraries with domain-specific applications.
description:        Cookbook is a line of libraries covering a wide variety of Haskell applications. Every application that I make, I add its functions to Cookbook, turning Cookbook into an all-encompassing general-purpose library over time. The claim-to-fame for the library is its use of overloaded typeclasses, called "Continuities". 
license:             BSD3
license-file:        LICENSE
author:              Nate Pisarski
maintainer:          nathanpisarski@gmail.com
--This package's github repository
--https://github.com/natepisarski/Cookbook-hs
category:            Development
build-type:          Simple
cabal-version:       >=1.8
library 
  exposed-modules:      
            Cookbook.Meta,
            Cookbook.Essential.Common, 
              Cookbook.Essential.Continuous, 
            Cookbook.Essential.IO,
            Cookbook.Essential.Meta,
    
            Cookbook.Ingredients.Functional.Break, 
            Cookbook.Ingredients.Lists.Access, 
            Cookbook.Ingredients.Lists.Modify,
            Cookbook.Ingredients.Lists.Stats,
            Cookbook.Ingredients.Tupples.Look, 
            Cookbook.Ingredients.Tupples.Assemble,  
            Cookbook.Ingredients.Lists.Encompass, 
            Cookbook.Ingredients.Meta, 
            Cookbook.Ingredients.Lists.Meta, 
            Cookbook.Ingredients.Tupples.Meta, 
            Cookbook.Ingredients.Functional.Meta, 

            Cookbook.Recipes.Sanitize, 
            Cookbook.Recipes.Math,
            Cookbook.Recipes.DataStructures,
            Cookbook.Recipes.Algorithm, 
            Cookbook.Recipes.Cline, 
            Cookbook.Recipes.Meta, 

            Cookbook.Project.Configuration.Configuration,
            Cookbook.Project.Preprocess.Preprocess, 
            Cookbook.Project.Quill2.Q2Parse, 
            Cookbook.Project.Quill2.Q2Prelude, 
            Cookbook.Project.Quill2.Q2Api, 
            Cookbook.Project.Quill2.Q2Io, 
            Cookbook.Project.Quill2.Meta
                        
            
  build-depends:       base ==4.*, directory, strict

source-repository head
  type: git
  location: https://github.com/natepisarski/Cookbook-hs