diff --git a/addressbook/setup/setup.inc.php b/addressbook/setup/setup.inc.php
new file mode 100755
index 0000000000..2e6571cd8c
--- /dev/null
+++ b/addressbook/setup/setup.inc.php
@@ -0,0 +1,53 @@
+
+ Always have your address book available for updates or look ups from anywhere.
+ Share address book contact information with others.
+ Link contacts to calendar events or InfoLog entires like phonecalls.
+ Addressbook is the eGroupWare default contact application.
+ It makes use of the eGroupWare contacts class to store and retrieve
+ contact information via SQL or LDAP.';
+
+ $setup_info['addressbook']['maintainer'] = 'eGroupWare coreteam';
+ $setup_info['addressbook']['maintainer_email'] = 'egroupware-developers@lists.sourceforge.net';
+
+ /* The hooks this app includes, needed for hooks registration */
+ $setup_info['addressbook']['hooks'][] = 'admin';
+ $setup_info['addressbook']['hooks'][] = 'add_def_pref';
+ $setup_info['addressbook']['hooks'][] = 'config_validate';
+ $setup_info['addressbook']['hooks'][] = 'home';
+ $setup_info['addressbook']['hooks'][] = 'addaccount';
+ $setup_info['addressbook']['hooks'][] = 'editaccount';
+ $setup_info['addressbook']['hooks'][] = 'deleteaccount';
+ $setup_info['addressbook']['hooks'][] = 'notifywindow';
+ $setup_info['addressbook']['hooks'][] = 'sidebox_menu';
+ $setup_info['addressbook']['hooks'][] = 'preferences';
+
+ /* Dependencies for this app to work */
+ $setup_info['addressbook']['depends'][] = array(
+ 'appname' => 'phpgwapi',
+ 'versions' => Array('0.9.14','0.9.15','1.0.0')
+ );
+?>