-
Notifications
You must be signed in to change notification settings - Fork 6
/
radium.cabal
64 lines (58 loc) · 1.86 KB
/
radium.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
59
60
61
62
63
64
name: radium
version: 0.8.0
cabal-version: >= 1.10
build-type: Simple
author: Krzysztof Langner
maintainer: klangner@gmail.com
synopsis: Chemistry
homepage: https://github.com/klangner/radium
Bug-reports: https://github.com/klangner/radium/issues
stability: Unstable interface, incomplete features.
category: Chemistry
License: BSD3
License-file: LICENSE
Extra-Source-Files:
CHANGES
description:
This library contains:
.
* periodic table with information about elements
.
* Readers and writers for different formula formats.
source-repository head
type: git
location: https://github.com/klangner/radium
library
hs-source-dirs: src
default-language: Haskell2010
ghc-options: -Wall
build-depends:
base >= 4 && <5,
containers >=0.5.0 && <0.6,
lens >=4.15.1,
parsec >=3.1.3 && <3.2
exposed-modules: Radium.Element,
Radium.Formats.Condensed,
Radium.Formats.Smiles
test-suite unit-tests
type: exitcode-stdio-1.0
main-is: Spec.hs
default-language: Haskell2010
build-depends:
base >= 4 && <5,
hspec >=2 && <3,
lens >=4.15.1,
QuickCheck >=2.6 && <3,
Cabal >=1.16.0 && <2,
containers >=0.5.0 && <0.6,
parsec >=3.1.3 && <3.2
other-modules:
Radium.Element,
Radium.ElementSpec,
Radium.Formats.Condensed,
Radium.Formats.CondensedSpec,
Radium.Formats.Smiles,
Radium.Formats.SmilesSpec
hs-source-dirs:
src,
test-src