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 9
/
Copy pathmusic-pitch.cabal
executable file
·69 lines (65 loc) · 2.82 KB
/
music-pitch.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
69
name: music-pitch
version: 1.9.2
cabal-version: >= 1.10
author: Hans Hoglund
maintainer: Hans Hoglund
license: BSD3
license-file: COPYING
synopsis: Musical pitch representation.
category: Music
tested-with: GHC
build-type: Simple
description:
This package provides various representations of musical pitch.
.
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-pitch.git
library
build-depends: base >= 4 && < 5,
containers,
lens >= 4.11 && < 5,
semigroups >= 0.13.0.1 && < 1,
data-interval >= 1.0.0 && < 2,
vector-space >= 0.10.2 && < 1,
vector-space-points >= 0.2 && < 1,
nats,
positive >= 0.4 && < 1,
type-unary >= 0.2.16 && < 1.0,
aeson >= 0.7.0.6 && < 1
exposed-modules: Music.Pitch
Music.Pitch.Absolute
Music.Pitch.Equal
Music.Pitch.Common
Music.Pitch.Common.Types
Music.Pitch.Common.Quality
Music.Pitch.Common.Number
Music.Pitch.Common.Interval
Music.Pitch.Common.Pitch
Music.Pitch.Common.Semitones
Music.Pitch.Common.Spell
Music.Pitch.Common.Harmony
Music.Pitch.Common.Names
Music.Pitch.Ambitus
Music.Pitch.Scale
Music.Pitch.Clef
Music.Pitch.Intonation
Music.Pitch.Literal
Music.Pitch.Literal.Pitch
Music.Pitch.Literal.Interval
Music.Pitch.Augmentable
Music.Pitch.Alterable
other-modules: Music.Pitch.Tokawa
hs-source-dirs: src
default-language: Haskell2010
default-extensions: StandaloneDeriving,
TypeFamilies,
TypeOperators,
GeneralizedNewtypeDeriving,
MultiParamTypeClasses,
DeriveDataTypeable,
ViewPatterns,
OverloadedStrings
ghc-options: -fno-warn-typed-holes