This repository has been archived by the owner on Apr 29, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
music-parts.cabal
executable file
·67 lines (63 loc) · 2.9 KB
/
music-parts.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
name: music-parts
version: 1.9.2
author: Hans Hoglund
maintainer: Hans Hoglund
license: BSD3
license-file: COPYING
synopsis: Musical instruments, parts and playing techniques.
category: Music
tested-with: GHC
build-type: Simple
cabal-version: >= 1.10
data-files: data/instruments.csv
description:
Abstract representation of musical parts and instruments.
.
This library is part of the Music Suite, see <http://music-suite.github.io>.
source-repository head
type: git
location: git://github.com/music-suite/music-parts.git
library
build-depends: base >= 4 && < 5,
containers >= 0.5.5.1 && < 1,
monadplus,
aeson >= 0.7.0.6 && < 1,
lens >= 4.11 && < 5,
semigroups >= 0.13.0.1 && < 1,
data-default >= 0.5.3 && < 1,
adjunctions >= 4.1 && < 5,
roman-numerals >= 0.5.1.4 && < 1,
cassava >= 0.4.3.0 && < 1,
bytestring >= 0.10.4.0 && < 1,
vector-space >= 0.10.2 && < 1,
vector-space-points >= 0.2 && < 1,
music-pitch == 1.9.2,
music-dynamics == 1.9.2
exposed-modules: Data.Semigroup.Option.Instances
Music.Parts
Music.Parts.Voices
Music.Parts.Division
Music.Parts.Subpart
Music.Parts.Solo
Music.Parts.Part
Music.Parts.Group
Music.Parts.Instrument
Music.Parts.Instrument.Strings
Music.Parts.Instrument.Woodwind
Music.Parts.Instrument.Brass
Music.Parts.Instrument.Percussion
Music.Parts.Instrument.Keyboard
Music.Parts.Instrument.Vocal
Music.Parts.Internal.Data
other-modules: Paths_music_parts
hs-source-dirs: src
default-language: Haskell2010
default-extensions: StandaloneDeriving,
TypeFamilies,
TypeOperators,
GeneralizedNewtypeDeriving,
MultiParamTypeClasses,
DeriveFunctor,
DeriveDataTypeable,
ViewPatterns,
OverloadedStrings