Skip to content

Commit

Permalink
Some missing stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
Oskar Wickström committed Apr 10, 2015
1 parent ffe7393 commit c1e5644
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 2 deletions.
6 changes: 6 additions & 0 deletions README.md
Expand Up @@ -66,3 +66,9 @@ That should generate something like the following.
cabal install
make -C example
```

## Release

```bash
cabal clean && cabal build && cabal sdist && cabal upload dist/dataflow-*.tar.gz
```
2 changes: 2 additions & 0 deletions Setup.hs
@@ -0,0 +1,2 @@
import Distribution.Simple
main = defaultMain
11 changes: 9 additions & 2 deletions dataflow.cabal
@@ -1,11 +1,12 @@
name: dataflow
version: 0.4.0.0
version: 0.4.1.0
synopsis: Generate Graphviz documents from a Haskell representation.
description: Outputs .dot files that can be processed by the dot
command. Currently it only supports the DFD output format
(http://en.wikipedia.org/wiki/Data_flow_diagram). Support
for a Graphviz-like input format (instead of using the
data structures in Haskell) is planned.
homepage: https://github.com/owickstrom/dataflow
license: MIT
license-file: LICENSE
author: Oskar Wickström
Expand All @@ -17,9 +18,15 @@ build-type: Simple
extra-source-files: README.md,
LICENSE,
example/example.hs,
example/output.svg
example/example.svg,
example/legend.hs,
example/legend.svg
cabal-version: >=1.10

source-repository head
type: git
location: git@github.com:owickstrom/dataflow.git

library
exposed-modules:
DataFlow.Core,
Expand Down

0 comments on commit c1e5644

Please sign in to comment.