-
Notifications
You must be signed in to change notification settings - Fork 2
/
spe.cabal
35 lines (29 loc) · 1.15 KB
/
spe.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
name: spe
version: 0.6.3
synopsis: Combinatorial species lite
description: A simple library for combinatorial species with no
dependencies but base. See <http://github.com/akc/spe>
for an introduction and examples.
If you want something more substantial, then you
will most likely be happier with the excellent
species package by Brent Yorgey:
<http://hackage.haskell.org/package/species>
homepage: http://github.com/akc/spe
license: BSD3
license-file: LICENSE
author: Anders Claesson
maintainer: [email protected]
category: Math
build-type: Simple
cabal-version: >=1.9.2
source-repository head
type: git
location: git://github.com/akc/spe.git
library
exposed-modules: Math.Spe
build-depends: base >=4.5 && <5
ghc-options: -Wall
Test-Suite Main
type: exitcode-stdio-1.0
main-is: tests/Main.hs
build-depends: base