November 2016
Intermediate to advanced
697 pages
14h 44m
English
All package management in Julia is done via GitHub. Here are the steps for publishing your own package:
METADATA.jl on GitHub, get the address of your fork, and execute the following:$ git clone git@github.com:your-user-name/METADATA.jl.git $ cd METADATA.jl
$ git branch mypack $ git checkout mypack
MyPack. Your code should go in a /src folder, which should also contain mypack.jl, that will be run when the command using MyPack is issued. The tests should go in the /tests folder. You should have a runtests.jl file in the folder that runs the tests for your package.A text file named REQUIRE is where any dependencies ...
Read now
Unlock full access