-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfadno.cabal
68 lines (64 loc) · 2.1 KB
/
fadno.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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
name: fadno
category: Music
synopsis: Minimal library for music generation and notation
version: 1.1.9.1
homepage: http://github.com/slpopejoy/fadno
description: Provides the Note type and HasNote class with polymorphic pitch and duration representations,
metering, barring and time signature utilities, plus midi and MusicXML support.
license: BSD3
license-file: LICENSE
author: Stuart Popejoy
maintainer: [email protected]
build-type: Simple
cabal-version: >=1.10
source-repository head
type: git
location: https://github.com/slpopejoy/fadno.git
library
exposed-modules:
Fadno.Meter
Fadno.Midi
Fadno.Notation
Fadno.Note
Fadno.Util
Fadno.Xml
-- other-modules:
-- other-extensions:
build-depends: Decimal >= 0.4
, HUnit >= 1.5
, base >= 4.9 && < 4.20
, containers >= 0.5
, data-default >= 0.7
, event-list >= 0.1
, fadno-xml >= 1.2.1
, lens >= 4.15
, midi >= 0.2
, mtl >= 2.2
, process >= 1.4
, safe >= 0.3
, text >= 1.2
, unordered-containers >= 0.2
, vector >= 0.12
, xml >= 1.3
hs-source-dirs: src
default-language: Haskell2010
ghc-options: -Wall
test-suite tests
type: exitcode-stdio-1.0
main-is: Tests.hs
hs-source-dirs: tests
default-language: Haskell2010
other-modules: MeterSpec
, NotationSpec
, NoteSpec
, UtilSpec
, XmlSpec
build-depends:
base
, containers
, HUnit
, fadno
, fadno-xml
, lens
, hspec
, hspec-contrib