qdate/src/qdate.app.src

19 lines
506 B
Text
Raw Normal View History

2013-01-14 13:58:12 -06:00
{application, qdate,
[
{description, "Simple Date and Timezone handling for Erlang"},
{vsn, "0.7.0"},
2013-01-14 13:58:12 -06:00
{registered, []},
{applications, [
kernel,
2016-07-14 15:11:08 -05:00
qdate_localtime,
2015-07-27 15:58:38 +02:00
erlware_commons,
2013-01-14 13:58:12 -06:00
stdlib
]},
{modules, [qdate, qdate_srv, qdate_sup, qdate_app]},
2015-07-25 20:21:07 +02:00
{env, []},
2019-08-21 11:32:35 -05:00
{maintainers, ["Jesse Gumm"]},
2015-07-25 20:21:07 +02:00
{licenses, ["MIT"]},
{mod, {qdate_app, []}},
2015-07-25 20:21:07 +02:00
{links, [{"Github", "https://github.com/choptastic/qdate"}]}
2013-01-14 13:58:12 -06:00
]}.