-
Notifications
You must be signed in to change notification settings - Fork 1
/
buffon.cabal
36 lines (33 loc) · 1.19 KB
/
buffon.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
36
-- Initial buffon.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: buffon
version: 0.1.0.1
synopsis: An implementation of Buffon machines.
description: An implementation of everything in "On Buffon Machines and Numbers".
license: BSD2
license-file: LICENSE
author: Derek Elkins
maintainer: derek.a.elkins+github@gmail.com
homepage: https://github.com/derekelkins/buffon
bug-reports: https://github.com/derekelkins/buffon/issues
copyright: 2015 Derek Elkins
category: Math
build-type: Simple
-- extra-source-files:
cabal-version: >=1.10
source-repository head
type: git
location: git://github.com/derekelkins/buffon.git
library
exposed-modules: Data.Distribution.Buffon
-- other-modules:
-- other-extensions:
build-depends:
base >=4.8 && <4.11,
monad-primitive >= 0.1 && <0.2,
primitive >= 0.6 && <0.7,
mwc-random >= 0.13 && <0.14,
mwc-random-monad >=0.7 && <0.8,
transformers >= 0.4 && <0.6
-- hs-source-dirs:
default-language: Haskell2010