-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLaTeX-numbers.cabal
58 lines (55 loc) · 1.86 KB
/
LaTeX-numbers.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
name: LaTeX-numbers
version: 0.1.0.0
synopsis: Tool to fix numbers syntax in LaTeX files
homepage: https://github.com/viviag/LaTeX-numbers
license: MIT
license-file: LICENSE
author: Vitalii Guzeev
maintainer: viviag@yandex.ru
category: Development
build-type: Simple
cabal-version: >=1.10
library
exposed-modules: LaTeX.Demarkation
, LaTeX.Load
, LaTeX.Entry
, LaTeX.Options
, LaTeX.Executor
, LaTeX.Types
, LaTeX.Utils
, LaTeX.Replacement.Rules
, LaTeX.Replacement.Procedures
hs-source-dirs: src
ghc-options: -Wall
build-depends: base >=4.12
, text >=1.2
, turtle
, foldl
, pcre-heavy
, split
, string-conversions
, system-filepath
, tuple
default-language: Haskell2010
executable LaTeX-numbers
main-is: Main.hs
hs-source-dirs: app
ghc-options: -Wall -threaded -rtsopts
build-depends: LaTeX-numbers
, base >=4.12
, text >=1.2
, turtle
, system-filepath
, foldl
, pcre-heavy
, tuple
default-language: Haskell2010
test-suite doctests
type: exitcode-stdio-1.0
ghc-options: -Wall
main-is: doctests.hs
default-extensions: RecordWildCards
, OverloadedStrings
build-depends: base
, doctest >= 0.8
default-language: Haskell2010