diff options
Diffstat (limited to 'src/erlang-oauth/oauth.app.in')
-rw-r--r-- | src/erlang-oauth/oauth.app.in | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/src/erlang-oauth/oauth.app.in b/src/erlang-oauth/oauth.app.in new file mode 100644 index 00000000..6357b9b0 --- /dev/null +++ b/src/erlang-oauth/oauth.app.in @@ -0,0 +1,20 @@ +{application, oauth, [ + {description, "Erlang OAuth implementation"}, + {vsn, "dev"}, + {modules, [ + oauth, + oauth_hmac_sha1, + oauth_http, + oauth_plaintext, + oauth_rsa_sha1, + oauth_unix, + oauth_uri + ]}, + {registered, []}, + {applications, [ + kernel, + stdlib, + crypto, + inets + ]} +]}. |