-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.yaml
More file actions
109 lines (98 loc) · 2.38 KB
/
package.yaml
File metadata and controls
109 lines (98 loc) · 2.38 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
name: purescript-python
version: 0.1.3.0
github: "purescript-python/purescript-python"
license: MIT
author: "Taine Zhao"
maintainer: "[email protected]"
copyright: "2020 Taine Zhao"
extra-source-files:
- README.md
- ChangeLog.md
# Metadata used when publishing your package
# synopsis: Short description of your package
# category: Web
# 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 GitHub at <https://github.com/purescript-python/purescript-python#readme>
dependencies:
- aeson >=1.0 && <1.5
- aeson-better-errors >=0.8
- aeson-pretty
- base >=4.11 && <4.13
- base-compat >=0.6.0
- bytestring
- containers
- directory >=1.2.3
- filepath
- monad-control >=1.0.0.0 && <1.1
- monad-logger >=0.3 && <0.4
- mtl >=2.1.0 && <2.3.0
- protolude >=0.1.6 && <0.2.4
- semigroups >=0.16.2 && <0.19
- text
- transformers >=0.3.0 && <0.6
- transformers-base >=0.4.0 && <0.5
- transformers-compat >=0.3.0
- utf8-string >=1 && <2
- purescript
- prettyprinter
- bytestring-conversion
- utf8-string
- zip
default-extensions:
- GADTs
- ViewPatterns
- DeriveGeneric
- DeriveFunctor
- DeriveTraversable
- LambdaCase
- TemplateHaskell
- DuplicateRecordFields
- StandaloneDeriving
- ExistentialQuantification
- MultiParamTypeClasses
- NamedFieldPuns
- PartialTypeSignatures
- FlexibleInstances
- ConstraintKinds
- DataKinds
- DeriveFoldable
- DerivingStrategies
- EmptyDataDecls
- FlexibleContexts
- KindSignatures
- PatternGuards
- PatternSynonyms
- RankNTypes
- RecordWildCards
- ScopedTypeVariables
- TupleSections
when:
- condition: os(darwin)
then:
ghc-options: -Wall -O2
ld-options:
- -pthread
- -Wall
else:
ghc-options: -Wall -O2 -static
cc-options: -static
ld-options:
- -static
- -pthread
- -Wall
library:
source-dirs: src
executables:
pspy-blueprint:
main: Main.hs
source-dirs: app
dependencies:
- purescript-python
tests:
purescript-python-test:
main: Spec.hs
source-dirs: test
dependencies:
- purescript-python