gdritter repos apicius / 535c971
Fixed name of project universally. (smdh) Getty Ritter 7 years ago
3 changed file(s) with 29 addition(s) and 29 deletion(s). Collapse all Expand all
1 # Apicus
1 # Apicius
22
33 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
55 looks like this:
66
77 ```
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
+0
-27
apicus.cabal less more
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