-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.yaml
More file actions
114 lines (107 loc) · 2.91 KB
/
package.yaml
File metadata and controls
114 lines (107 loc) · 2.91 KB
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
name: spicy
version: 0.0.1
git: https://gitlab.com/theoretical-chemistry-jena/quantum-chemistry/Spicy
license: GPL-3
author: "Phillip Seeber, Sebastian Seidenath"
maintainer: "phillip.seeber@uni-jena.de"
copyright: "2021 Phillip Seeber, Sebastian Seidenath"
build-type: Simple
extra-source-files:
- README.md
- LICENSE
- data/Fonts/*
- goldentests/input/
- goldentests/goldenfiles/
# To avoid duplicated efforts in documentation and dealing with the
# complications of embedding Haddock markup inside cabal files, it is
# common to point users to the README.md file.
description: Please see the README on GitLab at <https://gitlab.com/theoretical-chemistry-jena/quantum-chemistry/Spicy>
dependencies:
- base >= 4.7 && <5
- optics >= 0.3 && < 0.5
- attoparsec >= 0.13.1.0 && < 0.14
- deepseq >= 1.4.2.0 && < 1.5
- parallel >= 3.2.1.0 && < 3.3
- aeson >= 1.4.4.0 && < 1.6
- aeson-pretty >= 0.8.7 && < 0.9
- pathtype >= 0.8.1 && < 0.9
- data-default >= 0.7.1.1 && < 0.8
- integer-roots >= 1.0 && < 2
- yaml >= 0.11.2.0 && < 0.12
- text >= 1.2.3.1 && < 1.3
- containers >= 0.6.0.1 && <0.7
- split >= 0.2.3.3 && < 0.3
- bytestring >= 0.10.8.2 && < 0.12
- file-embed >= 0.0.11.1 && < 0.1
- cmdargs >= 0.10.20 && < 0.11
- formatting >= 6.3.7 && < 8
- massiv >= 0.6.0.0 && < 0.7
- tasty >= 1.2.3 && < 1.4
- tasty-golden >= 2.3.3 && < 2.4
- vector >= 0.12.1.2 && < 0.13
- network >= 3.1.2.1 && < 3.2
- binary >= 0.8.8.0 && < 0.11
- vector-binary-instances >= 0.2.5.1 && < 0.3
- rio >= 0.1.13.0 && < 0.2
- free >= 5.1 && < 5.2
ghc-options:
- -Wall
- -Wno-unused-top-binds
- -Wcompat
- -Widentities
- -Wincomplete-record-updates
- -Wincomplete-uni-patterns
- -Wpartial-fields
- -Wredundant-constraints
library:
source-dirs: src
default-extensions:
- BangPatterns
- OverloadedStrings
- NoImplicitPrelude
- FlexibleContexts
- ScopedTypeVariables
- OverloadedLabels
- DataKinds
- FlexibleInstances
- MultiParamTypeClasses
- UndecidableInstances
- TypeFamilies
- DuplicateRecordFields
- ScopedTypeVariables
- DataKinds
- DeriveAnyClass
- DeriveDataTypeable
- DeriveGeneric
- DeriveTraversable
- FlexibleInstances
- GeneralizedNewtypeDeriving
- TypeApplications
- RecordWildCards
- NamedFieldPuns
executables:
spicy:
main: spicy.hs
source-dirs: app
dependencies:
- spicy
default-extensions:
- BangPatterns
- OverloadedStrings
- NoImplicitPrelude
ghc-options:
- -threaded
- -rtsopts
- '"-with-rtsopts=-N -qa"'
tests:
unittests:
main: testing.hs
source-dirs: app
dependencies:
- spicy
- tasty >= 1.2.3 && < 1.3
- tasty-hunit >= 0.10.0.2 && < 0.11
- tasty-golden >= 2.3.1 && < 2.4
ghc-options:
- -threaded
- -rtsopts