BazerData.jl

Data manipulation utilities for Julia
Log | Files | Refs | README | LICENSE

make.jl (895B)


      1 #!/usr/bin/env julia
      2 
      3 push!(LOAD_PATH, "../src/")
      4 
      5 using BazerData
      6 using Documenter
      7 
      8 DocMeta.setdocmeta!(BazerData, :DocTestSetup, :(using BazerData);
      9     recursive=true)
     10 
     11 makedocs(
     12     format = Documenter.HTML(
     13         size_threshold = 512_000,
     14         size_threshold_warn = 256_000,
     15         example_size_threshold = 200_000,
     16     ),
     17     sitename = "BazerData.jl",
     18     modules  = [BazerData],
     19     authors = "Erik Loualiche",
     20     version = "",
     21     pages=[
     22         "Home" => "index.md",
     23         "Manual" => [
     24             "man/xtile_guide.md",
     25             "man/winsorize_guide.md"
     26         ],
     27         "Demos" => [
     28             "demo/stata_utils.md",
     29         ],
     30         "Library" => [
     31             "lib/public.md",
     32             "lib/internals.md"
     33         ]
     34     ],
     35 )
     36 
     37 deploydocs(;
     38     repo = "github.com/louloulibs/BazerData.jl",
     39     target = "build",
     40     branch = "gh-pages",
     41     push_preview = true,
     42 )