Skip to content

Commit 7044e4c

Browse files
committed
update docs
1 parent d13d8c9 commit 7044e4c

4 files changed

Lines changed: 12 additions & 6 deletions

File tree

docs/Project.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
[deps]
22
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
3+
YetAnotherSimulationSuite = "d3ec4d54-14c5-4f6e-8d2e-82ae0926cfed"

docs/make.jl

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
using Documenter
2+
using YetAnotherSimulationSuite
23

34
makedocs(;
45
sitename = "YetAnotherSimulationSuite.jl",
@@ -14,12 +15,13 @@ makedocs(;
1415
"Vibrations" => "vibrations.md",
1516
"Molecular Dynamics" => ["md/dynamics.md", "md/thermostats.md"],
1617
"Potentials" => ["potentials/potList.md", "potentials/customPot.md"],
18+
"API" => "api.md"
1719
"Credits" => "dependencies.md"
1820
]
1921
)
2022

2123
deploydocs(;
22-
repo = "github.com/Cavenfish/YetAnotherSimulationSuite.jl.git",
23-
devbranch = "dev",
24+
repo = "github.com/Cavenfish/YetAnotherSimulationSuite.jl",
25+
devbranch = "main",
2426
push_preview = true
2527
)

docs/src/api.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
```@autodocs
2+
Modules=[YetAnotherSimulationSuite]
3+
```

docs/src/index.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,20 +3,20 @@
33
!!! warning "YetAnotherSimulationSuite.jl is still in the pre-release phase"
44
This package is still very early in its development, and there are more mature molecular dynamics packages in Julia. For instance, [Molly.jl](https://juliamolsim.github.io/Molly.jl/stable/) and [NQCDynamics.jl](https://nqcd.github.io/NQCDynamics.jl/stable/) both offer molecular dyanmics in Julia.
55

6-
Yet Another Simulation Suite (YASS) aims to offer users a simple, intuitive and easy-to-use molecular dynamics enviornment. It draws inspiration from Python's [ASE](https://wiki.fysik.dtu.dk/ase/index.html), but is intended to be faster and offer users more flexibility. The flexibility comes from the relative ease with which users can add their own methods to dynamics or other components of YASS.
6+
`YetAnotherSimulationSuite.jl` (YASS) aims to offer users a simple, intuitive and easy-to-use molecular dynamics enviornment. It draws inspiration from Python's [ASE](https://wiki.fysik.dtu.dk/ase/index.html), but is intended to be faster and offer users more flexibility. The flexibility comes from the relative ease with which users can add their own methods to dynamics or other components of YASS.
77

88
### Installation
99

1010
YASS is not yet on the general registry, so for now installation can be done via GitHub.
1111

1212
```julia-repl
13-
pkg> add https://github.com/Cavenfish/YetAnotherSimulationSuite.jl
13+
pkg> add YetAnotherSimulationSuite
1414
```
1515

16-
If you are more adventerous, you can consider installing the `dev` branch of YASS. This will get updates more frequently, which gives users more features but also comes with increased chances of bugs.
16+
If you are more adventerous, you can consider installing YASS from GitHub. This will get updates more frequently, which gives users more features but also comes with increased chances of bugs.
1717

1818
```julia-repl
19-
pkg> add https://github.com/Cavenfish/YetAnotherSimulationSuite.jl#dev
19+
pkg> add https://github.com/Cavenfish/YetAnotherSimulationSuite.jl
2020
```
2121

2222
### Features

0 commit comments

Comments
 (0)