FinanceRoutines.jl

Financial data routines for Julia
Log | Files | Refs | README | LICENSE

make.jl (774B)


      1 # Inside make.jl
      2 push!(LOAD_PATH, "../src/")
      3 # push!(LOAD_PATH, "./demo/", "./man/, ")
      4 
      5 using FinanceRoutines
      6 using Documenter
      7 
      8 makedocs(
      9     format = Documenter.HTML(),
     10     sitename = "FinanceRoutines.jl",
     11     modules  = [FinanceRoutines],
     12     authors = "Erik Loualiche",
     13     pages=[
     14         "Home" => "index.md",
     15         "Manual" => [
     16             "man/wrds_guide.md",
     17             "man/yield_curve_gsw.md"
     18         ],
     19         "Demos" => [
     20             "demo/beta.md",
     21             "demo/wrds_advanced.md",
     22             "demo/crsp_siz_to_ciz.md"
     23         ],
     24         "Library" => [
     25             "lib/public.md",
     26             "lib/internals.md"
     27         ]
     28     ]
     29 )
     30 
     31 deploydocs(;
     32     repo="github.com/louloulibs/FinanceRoutines.jl.git",
     33     target = "build",
     34     branch = "gh-pages",
     35 )