-
Notifications
You must be signed in to change notification settings - Fork 9
/
sync-soccer.cabal
43 lines (39 loc) · 1.6 KB
/
sync-soccer.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
-- Initial sync.soccer.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: sync-soccer
-- The package version. See the Haskell package versioning policy (PVP)
-- for standards guiding when and how versions should be incremented.
-- https://wiki.haskell.org/Package_versioning_policy
-- PVP summary: +-+------- breaking API changes
-- | | +----- non-breaking API additions
-- | | | +--- code changes with no API change
version: 0.1.0.0
synopsis: Synchronise soccer event and tracking data
homepage: https://github.com/huffyhenry/sync.soccer
license: AGPL-3
license-file: LICENSE
author: Allan Clark and Marek Kwiatkowski
maintainer: [email protected]
copyright: 2018-2020 Allan Clark and Marek Kwiatkowski
build-type: Simple
extra-source-files: CHANGELOG.md, README.md
cabal-version: >=1.10
executable sync-soccer
hs-source-dirs: src, app
main-is: SyncMain.hs
ghc-options: -O -fPIC
other-modules: NeedlemanWunsch,
Tracab,
F24,
Scoring,
Csvs,
XmlUtils
build-depends: base >=4.12,
split,
optparse-applicative,
containers,
bytestring,
time >=1.9,
array,
xml
default-language: Haskell2010