1
0
mirror of https://github.com/redelmann/scat synced 2025-01-10 06:34:20 +01:00
scat/scat.cabal
2013-08-09 17:19:22 +02:00

61 lines
1.8 KiB
Plaintext

-- Initial scat.cabal generated by cabal init. For further documentation,
-- see http://haskell.org/cabal/users-guide/
-- The name of the package.
name: scat
-- The package version. See the Haskell package versioning policy (PVP)
-- for standards guiding when and how versions should be incremented.
-- http://www.haskell.org/haskellwiki/Package_versioning_policy
-- PVP summary: +-+------- breaking API changes
-- | | +----- non-breaking API additions
-- | | | +--- code changes with no API change
version: 0.1.0.0
-- A short (one-line) description of the package.
synopsis: Generates unique passwords for various websites from a single password.
-- A longer description of the package.
-- description:
-- The license under which the package is released.
license: BSD3
-- The file containing the license text.
license-file: LICENSE
-- The package author(s).
author: Romain Edelmann
-- An email address to which users can send suggestions, bug reports, and
-- patches.
maintainer: romain.edelmann@gmail.com
-- A copyright notice.
-- copyright:
category: Password
build-type: Simple
-- Constraint on the version of Cabal needed to build this package.
cabal-version: >=1.8
data-dir: lists
data-files: *.txt
executable scat
-- .hs or .lhs file containing the Main module.
main-is: Scat.hs
ghc-options: -Wall -O3
hs-source-dirs: src
-- Modules included in this executable, other than Main.
other-modules: Scat.Builder, Scat.Schemas, Scat.Options, Scat.Utils.Permutation, Paths_scat
-- Other library packages from which modules are imported.
build-depends: base ==4.5.*, SHA ==1.6.*, bytestring ==0.9.*, optparse-applicative ==0.5.*, mtl ==2.1.*, vector ==0.10.*