Fixed name of project universally. (smdh)
Getty Ritter
9 years ago
| 1 | |
# Apicus
|
| 1 |
# Apicius
|
| 2 | 2 |
|
| 3 | 3 |
Explorations in recipe visualization. Right now, this just implements
|
| 4 | |
a DSL for describing recipes in a graph-like way. A basic Apicus recipe
|
| 4 |
a DSL for describing recipes in a graph-like way. A basic Apicius recipe
|
| 5 | 5 |
looks like this:
|
| 6 | 6 |
|
| 7 | 7 |
```
|
| 1 |
name: apicius
|
| 2 |
version: 0.1.0.0
|
| 3 |
-- synopsis:
|
| 4 |
-- description:
|
| 5 |
license: BSD3
|
| 6 |
license-file: LICENSE
|
| 7 |
author: Getty Ritter <gettyritter@gmail.com>
|
| 8 |
maintainer: Getty Ritter <gettyritter@gmail.com>
|
| 9 |
copyright: ©2016 Getty Ritter
|
| 10 |
category: Cookery
|
| 11 |
build-type: Simple
|
| 12 |
cabal-version: >= 1.12
|
| 13 |
|
| 14 |
executable apicius
|
| 15 |
hs-source-dirs: src
|
| 16 |
main-is: Main.hs
|
| 17 |
other-modules: Lexer,
|
| 18 |
Parser,
|
| 19 |
AST
|
| 20 |
build-tools: happy, alex
|
| 21 |
default-extensions: OverloadedStrings,
|
| 22 |
ScopedTypeVariables
|
| 23 |
ghc-options: -Wall
|
| 24 |
build-depends: base >=4.7 && <4.9,
|
| 25 |
text,
|
| 26 |
array
|
| 27 |
default-language: Haskell2010
|
| 1 | |
name: apicus
|
| 2 | |
version: 0.1.0.0
|
| 3 | |
-- synopsis:
|
| 4 | |
-- description:
|
| 5 | |
license: BSD3
|
| 6 | |
license-file: LICENSE
|
| 7 | |
author: Getty Ritter <gettyritter@gmail.com>
|
| 8 | |
maintainer: Getty Ritter <gettyritter@gmail.com>
|
| 9 | |
copyright: ©2016 Getty Ritter
|
| 10 | |
category: Cookery
|
| 11 | |
build-type: Simple
|
| 12 | |
cabal-version: >= 1.12
|
| 13 | |
|
| 14 | |
executable apicus
|
| 15 | |
hs-source-dirs: src
|
| 16 | |
main-is: Main.hs
|
| 17 | |
other-modules: Lexer,
|
| 18 | |
Parser,
|
| 19 | |
AST
|
| 20 | |
build-tools: happy, alex
|
| 21 | |
default-extensions: OverloadedStrings,
|
| 22 | |
ScopedTypeVariables
|
| 23 | |
ghc-options: -Wall
|
| 24 | |
build-depends: base >=4.7 && <4.9,
|
| 25 | |
text,
|
| 26 | |
array
|
| 27 | |
default-language: Haskell2010
|