@@ -11,21 +11,14 @@ The library is implemented entirely in Rust, including the Python API. The Julia
11
11
[ ![ docs (stable)] ( https://img.shields.io/badge/Docs-stable-8CA1AF?logo=readthedocs )] ( https://polymers.readthedocs.io/en/stable )
12
12
[ ![ docs (latest)] ( https://img.shields.io/badge/Docs-latest-8CA1AF?logo=readthedocs )] ( https://polymers.readthedocs.io/en/latest )
13
13
[ ![ pypi] ( https://img.shields.io/pypi/v/polymers?logo=pypi&logoColor=FBE072&label=PyPI&color=4B8BBE )] ( https://pypi.org/project/polymers )
14
- [ ![ anaconda] ( https://img.shields.io/conda/v/mrbuche/polymers.svg?logo=anaconda&color=3EB049&label=Anaconda )] ( https://anaconda.org/mrbuche/polymers/ )
15
14
16
- The library can be installed as a Python package using
15
+ The library can be installed as a Python package:
17
16
18
17
``` shell
19
18
pip install polymers
20
19
```
21
20
22
- or as Python package within a Conda environment using
23
-
24
- ``` shell
25
- conda install --channel mrbuche polymers
26
- ```
27
-
28
- If Rust is installed, the latest edition of the library can be installed from the main branch of the GitHub repository:
21
+ If Rust is installed, the latest edition of the library can be installed from the GitHub repository:
29
22
30
23
``` shell
31
24
git clone
[email protected] :sandialabs/Polymers.git
@@ -39,37 +32,28 @@ pip install target/wheels/*.whl
39
32
40
33
[ ![ docs (stable)] ( https://raw.githubusercontent.com/sandialabs/Polymers/main/pages/assets/images/julia-docs-stable.svg )] ( https://sandialabs.github.io/Polymers/julia/docs/stable/polymers )
41
34
[ ![ docs (latest)] ( https://raw.githubusercontent.com/sandialabs/Polymers/main/pages/assets/images/julia-docs-latest.svg )] ( https://sandialabs.github.io/Polymers/julia/docs/latest/polymers )
42
- [ ![ anaconda] ( https://img.shields.io/conda/v/mrbuche/polymers.svg?logo=anaconda&color=3EB049&label=Anaconda )] ( https://anaconda.org/mrbuche/polymers/ )
43
35
44
- The latest edition of the library can be installed as a Julia package using
36
+ The latest edition of the library can be installed as a Julia package:
45
37
46
38
``` julia
47
39
using Pkg
48
40
Pkg. add (url= " https://github.com/sandialabs/Polymers" )
49
41
Pkg. build (" Polymers" )
50
42
```
51
43
52
- or as Julia package within a Conda environment using
53
-
54
- ``` shell
55
- conda install --channel mrbuche polymers
56
- ```
57
-
58
44
## Rust
59
45
60
46
[ ![ docs (stable)] ( https://img.shields.io/badge/Docs-stable-f46623?logo=rust&logoColor=000000 )] ( https://docs.rs/crate/polymers )
61
47
[ ![ docs (latest)] ( https://img.shields.io/badge/Docs-latest-f46623?logo=rust&logoColor=000000 )] ( https://sandialabs.github.io/Polymers/rust/docs/latest/polymers )
62
48
[ ![ crates] ( https://img.shields.io/crates/v/polymers?logo=rust&logoColor=000000&label=Crates&color=32592f )] ( https://crates.io/crates/polymers )
63
49
64
- The library can be used in an existing Rust project by adding the ` polymers ` crate as a dependency in Cargo.toml:
50
+ The library can be used in an existing Rust project by adding the ` polymers ` crate to Cargo.toml:
65
51
66
52
``` toml
67
53
[dependencies ]
68
54
polymers = " *"
69
55
```
70
- The asterisk ` * ` represents the newest released version of the crate, and should be changed to a specific version.
71
-
72
- To use the latest edition of the library, add the main branch of the GitHub repository to Cargo.toml:
56
+ To use the latest edition of the library, add the GitHub repository to Cargo.toml:
73
57
74
58
``` toml
75
59
[dependencies ]
0 commit comments