guile-charting.scm 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. ;; About the package
  2. (define *name* "Guile Charting")
  3. (define *description* "Making graphs and charts with Guile Scheme")
  4. (define *version* "0.2.0")
  5. (define *updated* "19 September 2014")
  6. (define *authors*
  7. '(("Andy Wingo" . "wingo@pobox.com")))
  8. ;; Copying the documentation
  9. (define *copyright-holder* "Andy Wingo")
  10. (define *years* '(2014))
  11. (define *permissions*
  12. "Permission is granted to copy, distribute and/or modify this document
  13. under the terms of the GNU Lesser General Public License as published by
  14. the Free Software Foundation; either version 3 of the License or (at
  15. your option) any later version. You should have received a copy of the GNU Lesser General Public
  16. License along with this manual; if not, see http://www.gnu.org/licenses/.")
  17. ;; Texinfo info
  18. (define *texinfo-basename* "guile-charting")
  19. (define *texinfo-category* "The Algorithmic Language Scheme")
  20. (define *extra-texinfo-menu-entries*
  21. '(("Concept Index")
  22. ("Function Index")))
  23. (define *texinfo-epilogue*
  24. `((node (% (name "Concept Index")))
  25. (unnumbered "Concept Index")
  26. (printindex (% (type "cp")))
  27. (node (% (name "Function Index")))
  28. (unnumbered "Function Index")
  29. (printindex (% (type "fn")))))
  30. ;; HTML foo
  31. (define *html-relative-root-path* "../../../")
  32. ;; The modules to document
  33. (define *modules*
  34. '(((charting)
  35. "Main charting interface")
  36. ((charting draw)
  37. "Lower-level drawing operators")))
  38. (define *module-sources* '())