Skip to content

Commit

Permalink
housekeeping and docs working locally
Browse files Browse the repository at this point in the history
  • Loading branch information
Dsantra92 committed Aug 30, 2024
1 parent 5dacd66 commit 527d1a7
Show file tree
Hide file tree
Showing 13 changed files with 137 additions and 410 deletions.
1 change: 1 addition & 0 deletions .JuliaFormatter.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
style = "sciml"
6 changes: 1 addition & 5 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,2 @@
<<<<<<< HEAD
/Manifest.toml
docs/build
=======
Manifest.toml
>>>>>>> docs
docs/build
6 changes: 6 additions & 0 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
repos:
- repo: https://github.com/qiaojunfeng/pre-commit-julia-format
rev: v0.2.0 # use the most recent version
hooks:
- id: julia-format # formatter for Julia code
args: [--project=.]
265 changes: 0 additions & 265 deletions docs/Manifest.toml

This file was deleted.

20 changes: 9 additions & 11 deletions docs/make.jl
Original file line number Diff line number Diff line change
@@ -1,22 +1,20 @@
using Documenter, e3nn

mathengine = MathJax3()
prettyurls = get(ENV, "CI", nothing) == "true"

makedocs(
modules = [e3nn],
doctest = false,
clean = true,
sitename="e3nn.jl",
format = Documenter.HTML(
canonical = "https://dsantra92.github.io/e3nn.jl/stable/",
sitename = "e3nn.jl",
format = Documenter.HTML(;
mathengine,
prettyurls,
assets = ["assets/favicon.ico"],
prettyurls = get(ENV, "CI", nothing) == "true",
collapselevel=3,
collapselevel = 3
),
pages = ["Home" => "Index.md",
"API Reference" => [
"o3" => "api/o3.md",
],
]
)
pages = ["Home" => "index.md", "API Reference" => ["o3" => "api/o3.md"]]
)

deploydocs(repo = "github.com/Dsantra92/e3nn.jl.git")
3 changes: 0 additions & 3 deletions docs/src/Index.md

This file was deleted.

4 changes: 2 additions & 2 deletions docs/src/index.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# e3nn.jl
# e3nn

E(3) equivariant neural networks in Julia.
Julia implementation of e3nn python library.
1 change: 0 additions & 1 deletion src/e3nn.jl
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,4 @@ module e3nn
# o3
include("o3/o3.jl")


end
Loading

0 comments on commit 527d1a7

Please sign in to comment.