https://github.com/juliaquantumcontrol/quantumcontrolregistry
A Development-Registry for @JuliaQuantumControl
https://github.com/juliaquantumcontrol/quantumcontrolregistry
julia registry
Last synced: 2 months ago
JSON representation
A Development-Registry for @JuliaQuantumControl
- Host: GitHub
- URL: https://github.com/juliaquantumcontrol/quantumcontrolregistry
- Owner: JuliaQuantumControl
- Created: 2021-10-24T18:56:35.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2024-03-22T17:07:17.000Z (over 1 year ago)
- Last Synced: 2025-02-11T19:40:40.753Z (9 months ago)
- Topics: julia, registry
- Homepage:
- Size: 19.5 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# QuantumControlRegistry
This is a Julia package registry for the [JuliaQuantumControl](https://github.com/JuliaQuantumControl) organization.
It contains packages that are not (or not yet) in the [Julia General Registry](https://github.com/JuliaRegistries/General). 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](https://github.com/GunnarFarneback/LocalRegistry.jl#readme) for more details.