diff --git a/Project.toml b/Project.toml index bb5dc1a..6bdbc20 100644 --- a/Project.toml +++ b/Project.toml @@ -1,7 +1,7 @@ name = "GGDUtils" uuid = "b7b5e640-9b39-4803-84eb-376048795def" authors = ["Anchal Gupta "] -version = "1.0.0" +version = "1.0.1" [deps] ArgParse = "c7e460c6-2fb9-53a9-8c5b-16f535851c63" diff --git a/README.md b/README.md index b5e079b..6d1b6a9 100644 --- a/README.md +++ b/README.md @@ -6,23 +6,13 @@ Package holding utilities for Generalized Grid Description (GGD) objects in IMAS datastructure. Primary goals are interpolation and core profile extrapolation. For installation and usage instructions, see the [online documentation](https://projecttorreypines.github.io/GGDUtils.jl/stable). For documentation on under development branch, see [dev online documentation](https://projecttorreypines.github.io/GGDUtils.jl/dev) -## Building julia environment (installation) +## Installation -After cloning this repo, check the make menu: -``` -GGDUtils.jl % make help -Help Menu +GGDUtils is registered with public repository [FuseRegistry](https://github.com/ProjectTorreyPines/FuseRegistry.jl/). For installation: -make env_with_cloned_repo (or make r): Creates a Julia environment with the cloned repositories -make env_with_git_url (or make u): Creates a Julia environment with the git urls without creating local clones -make clean: Deletes Project.toml and Manifest.toml for a fresh start ``` - -### make r -This option creates local copies of required private repositories at the same level as current repository and uses them in develop mode to create a Manifest.toml - -### make u -This option uses url of required private repositories to create a static Manifest.toml attached to current master branches of these repositories. - -### make clean -Deletes Manifest.toml so that environment can be recreated, to update or change the last used method. +using Pkg +Pkg.Registry.add(RegistrySpec(url="https://github.com/ProjectTorreyPines/FuseRegistry.jl.git")) +Pkg.Registry.add("General") +Pkg.add("GGDUtils") +```