Skip to content

Latest commit

 

History

History
31 lines (20 loc) · 927 Bytes

README.md

File metadata and controls

31 lines (20 loc) · 927 Bytes

QuantumControlRegistry

This is a Julia package registry for the JuliaQuantumControl organization.

It contains packages that are not (or not yet) in the Julia General Registry. This is for development and testing purposes only.

Using the registry

To use the registry, run

pkg> registry add https://github.com/JuliaQuantumControl/QuantumControlRegistry.git

or, using Pkg's API,

using Pkg
Pkg.Registry.add(RegistrySpec(url="https://github.com/JuliaQuantumControl/QuantumControlRegistry.git"))

This needs to be done only once per Julia installation.

Adding a package to the registry

using LocalRegistry
register("./GRAPELinesearchAnalysis.jl/", registry="QuantumControlRegistry")

See the LocalRegistry documentation for more details.