-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmake.jl
43 lines (35 loc) · 1.14 KB
/
make.jl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
ENV["PLOTS_TEST"] = "true"
ENV["GKSwstype"] = "100"
using SymPyPythonCall
using Documenter
makedocs(
sitename = "SymPyPythonCall",
format = Documenter.HTML(),
modules = [SymPyPythonCall]
)
# Documenter can also automatically deploy documentation to gh-pages.
# See "Hosting Documentation" and deploydocs() in the Documenter manual
# for more information.
deploydocs(
repo = "github.com/jverzani/SymPyPythonCall.jl.git"
)
#DocMeta.setdocmeta!(SymPyPythonCall, :DocTestSetup, :(using SymPyPythonCall); recursive=true)
# makedocs(;
# modules=[SymPyPythonCall],
# authors="jverzani <[email protected]> and contributors",
# repo="https://github.com/jverzani/SymPyPythonCall.jl/blob/{commit}{path}#{line}",
# sitename="SymPyPythonCall.jl",
# format=Documenter.HTML(;
# prettyurls=get(ENV, "CI", "false") == "true",
# canonical="https://jverzani.github.io/SymPyPythonCall.jl",
# assets=String[],
# ),
# pages=[
# "Home" => "index.md",
# "Examples" => "introduction.md"
# ],
# )
# # deploydocs(;
# repo="github.com/jverzani/SymPyPythonCall.jl",
# devbranch="main",
# )