-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* formatting * JuliaFormatter Action Bot (#179) Co-authored-by: eahenle <[email protected]> * JuliaFormatter Action Bot (#180) Co-authored-by: eahenle <[email protected]> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: eahenle <[email protected]>
- Loading branch information
1 parent
9adbe0d
commit f99aa60
Showing
31 changed files
with
1,802 additions
and
1,218 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
using Combinatorics | ||
open("load_combos.sh", "w") do f | ||
for (a,b,c,d) in permutations(ARGS) | ||
for (a, b, c, d) in permutations(ARGS) | ||
write(f, "julia --project -e 'using $a; using $b; using $c; using $d' && \\\n") | ||
end | ||
write(f, "echo -e \\\\nDone!\n") | ||
end | ||
return write(f, "echo -e \\\\nDone!\n") | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
![Xtals.jl](logo.jpg) | ||
|
||
| **Documentation** | **Build Status** | **Test Coverage** | | ||
|:---:|:---:|:---:| | ||
| **Documentation** | **Build Status** | **Test Coverage** | | ||
|:-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------:|:-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------:|:--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------:| | ||
| [![](https://img.shields.io/badge/docs-latest-blue.svg)](https://SimonEnsemble.github.io/Xtals.jl/stable) [![](https://img.shields.io/badge/docs-dev-blue.svg)](https://SimonEnsemble.github.io/Xtals.jl/dev) | [![CI](https://github.com/SimonEnsemble/Xtals.jl/actions/workflows/CI_Build.yml/badge.svg)](https://github.com/SimonEnsemble/Xtals.jl/actions/workflows/CI_Build.yml) [![Docs](https://github.com/SimonEnsemble/Xtals.jl/actions/workflows/doc_deployment.yml/badge.svg)](https://github.com/SimonEnsemble/Xtals.jl/actions/workflows/doc_deployment.yml) [![weekly](https://github.com/SimonEnsemble/Xtals.jl/actions/workflows/weekly.yml/badge.svg)](https://github.com/SimonEnsemble/Xtals.jl/actions/workflows/weekly.yml) | [![codecov](https://codecov.io/gh/SimonEnsemble/Xtals.jl/branch/master/graph/badge.svg?token=QM6XZ3KAW1)](https://codecov.io/gh/SimonEnsemble/Xtals.jl) [![Aqua QA](https://raw.githubusercontent.com/JuliaTesting/Aqua.jl/master/badge.svg)](https://github.com/JuliaTesting/Aqua.jl) | | ||
|
||
A pure-[Julia](https://julialang.org/) package for importing, manipulating, and working with crystal structures, such as metal-organic frameworks (MOFs). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,23 @@ | ||
using Documenter | ||
using Xtals, XtalsPyTools | ||
|
||
makedocs( | ||
root = joinpath(dirname(pathof(Xtals)), "..", "docs"), | ||
modules = [Xtals, XtalsPyTools], | ||
sitename = "Xtals.jl", | ||
clean = true, | ||
pages = [ | ||
"Xtals" => "index.md", | ||
"globals" => "globals.md", | ||
"matter" => "matter.md", | ||
"boxes" => "box.md", | ||
"crystals" => "crystal.md", | ||
"computing distances" => "distance.md", | ||
"bonding" => "bonds.md", | ||
"visualization" => "visualization.md", | ||
"XtalsPyTools" => "pytools.md" | ||
], | ||
format = Documenter.HTML(assets = ["assets/flux.css"]) | ||
makedocs(; | ||
root=joinpath(dirname(pathof(Xtals)), "..", "docs"), | ||
modules=[Xtals, XtalsPyTools], | ||
sitename="Xtals.jl", | ||
clean=true, | ||
pages=[ | ||
"Xtals" => "index.md", | ||
"globals" => "globals.md", | ||
"matter" => "matter.md", | ||
"boxes" => "box.md", | ||
"crystals" => "crystal.md", | ||
"computing distances" => "distance.md", | ||
"bonding" => "bonds.md", | ||
"visualization" => "visualization.md", | ||
"XtalsPyTools" => "pytools.md" | ||
], | ||
format=Documenter.HTML(; assets=["assets/flux.css"]) | ||
) | ||
|
||
deploydocs(repo = "github.com/SimonEnsemble/Xtals.jl.git") | ||
deploydocs(; repo="github.com/SimonEnsemble/Xtals.jl.git") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.