diff --git a/plupload.install b/plupload.install
new file mode 100644
index 0000000..6f1c1bb
--- /dev/null
+++ b/plupload.install
@@ -0,0 +1,26 @@
+<?php
+
+function plupload_requirements($phase) {
+  $t = get_t();
+  if ($phase == 'runtime') {
+    $libraries = plupload_library();
+     $library = $libraries['plupload'];
+     // We grab the first key
+    $testfile = key($library['js']);
+    if (file_exists($testfile)) {
+      $requirements['plupload'] = array(
+        'title' => $library['title'],
+        'value' => t('The library !link is installed', array('!link' => l('plupload', $library['website']))), 
+        'severity' => REQUIREMENT_OK,
+      );
+    }
+    else {
+      $requirements['plupload'] = array(
+        'title' => $library['title'],
+        'value' => t('Please install !link.', array('!link' => l('plupload', $library['website']))), 
+        'severity' => REQUIREMENT_ERROR,
+      );
+    }
+  }
+  return $requirements;
+}
