package nosetup
Install
Dune Dependency
Authors
Maintainers
Sources
sha256=3e3625d6cef46d6ad30e5981ab9f671704e4a0b110ed4d91a3ef3850666bbc20
md5=2c319ec16f31e851cba78240a8bed18c
Description
nosetup
helps you to load the dependencies of your project into your toplevel
of choice (OCaml Toplevel as well as UTOP) so you don't have to #require
your
dependencies yourself. It does so by finding your project metadata (even if you
are in a subdirectory, similar to git
), parsing it and then using findlib
to load it into your toplevel session.
Currently it supports Merlin's .merlin
files, though there is no limitation
of which files could be supported as long as the findlib
package names can
be parsed.
Published: 31 Dec 2016
README
nosetup - An .ocamlinit
helper to #require
packages in an OCaml toplevels
nosetup
helps you to load the dependencies of your project into your toplevel of choice (OCaml Toplevel as well as UTOP) so you don't have to #require
your dependencies yourself. It does so by finding your project metadata (even if you are in a subdirectory, similar to git
), parsing it and then using findlib
to load it into your toplevel session.
Currently it supports Merlin's .merlin
files, though there is no limitation of which files could be supported as long as the findlib
package names can be parsed.
Naming
You can call it no-setup
or nose-tup
. In the latter case you can use (👃,👃)
as logo.
Installation
Be sure to have installed:
ocamlbuild
(for building)topkg
(also for building)findlib
angstrom
containers
The package uses topkg
to run the build infrastructure, therefore you can build it with a short incantation:
ocaml pkg/pkg.ml -build
Usage
You need to add a bit to your .ocamlinit
:
#require "nosetup";;
Now every utop
you'll start will have all the findlib
packages from your .merlin
file preloaded. No need to do anything more.
License
As you can see in the LICENSE.md
, it is Apache 2.0 licensed.
Dependencies (6)
- containers
-
angstrom
< "0.7.0"
-
topkg
build
-
ocamlbuild
build
- ocamlfind
-
ocaml
>= "4.02.0"
Dev Dependencies
None
Used by
None
Conflicts
None