Browse Source

Cabal file updated for 0.1.0.0 version

Marcos Dumay de Medeiros 8 years ago
parent
commit
0052e32496
1 changed files with 19 additions and 4 deletions
  1. 19 4
      textual.cabal

+ 19 - 4
textual.cabal

@@ -3,22 +3,37 @@
 
 name:                textual
 version:             0.1.0.0
+
 synopsis:            Textual type class for data that represent text
--- description:         
+description:
+  Exposes the Textual type class, for data that represent textual content
+  .
+  Also, exposes a simple utility for conversion between instances, much like
+  fromIntegral converts between Integral instances.
+
 homepage:            https://sealgram.com/git/haskell/text-like/
 license:             MIT
 license-file:        LICENSE
 author:              Marcos Dumay de Medeiros
 maintainer:          marcos@marcosdumay.com
--- copyright:           
+
 category:            Text
 build-type:          Simple
--- extra-source-files:  
+
 cabal-version:       >=1.10
 
+source-repository head
+  type:     git
+  location: https://sealgram.com/git/haskell/textual
+  branch:   master
+
+source-repository this
+  type:     git
+  location: https://sealgram.com/git/haskell/textual
+  tag:   0.1.0.0
+
 library
   exposed-modules:     Data.Textual
-  -- other-modules:       
   other-extensions:    TypeSynonymInstances, FlexibleInstances
   build-depends:       base >=4.7 && <4.8, bytestring >=0.10 && <0.11, utf8-string >=1 && <1.1, text >=1.2 && <1.3
   hs-source-dirs:      src