-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnassa.cabal
31 lines (28 loc) · 1.26 KB
/
nassa.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
name: nassa
version: 1.0.0.0
synopsis: A package to validate NASSA modules
description: NASSA maintains a library of agent-based-modelling algorithms in individual code modules. Each module is defined by a NASSA.yml file. nassa-hs validates these .yml files.
license: MIT
license-file: LICENSE
author: Clemens Schmid
maintainer: [email protected]
category: Archaeoinformatics
build-type: Simple
cabal-version: >=1.10
extra-source-files: README.md,
CHANGELOG.md
library
exposed-modules: NASSA.Types, NASSA.Utils, NASSA.ReadYml
NASSA.CLI.List, NASSA.CLI.Validate, NASSA.BibTeX,
NASSA.SPDXLicense
hs-source-dirs: src
build-depends: base, filepath, aeson, bytestring, yaml,
directory, table-layout, time, parsec, email-validate,
text, file-embed, optparse-applicative
default-language: Haskell2010
executable nassa
main-is: Main-nassa.hs
hs-source-dirs: src-executables
build-depends: nassa, base, optparse-applicative, filepath
other-modules: Paths_nassa
default-language: Haskell2010