gproc.app.src 364 B

123456789101112131415161718
  1. %%% -*- mode: erlang -*-
  2. %%% $Id$
  3. %%%
  4. {application, gproc,
  5. [
  6. {description, "Extended process registry for Erlang"},
  7. {vsn, git},
  8. {id, "GPROC"},
  9. {registered, [ ] },
  10. {applications, [ kernel, stdlib ] },
  11. {mod, {gproc_app, []} },
  12. {maintainers, ["Ulf Wiger"]},
  13. {licenses, ["APL 2.0"]},
  14. {links, [{"Github", "https://github.com/uwiger/gproc"}]}
  15. ]
  16. }.