Move Stripe to ERPNext
diff --git a/erpnext/config/integrations.py b/erpnext/config/integrations.py
new file mode 100644
index 0000000..14d917f
--- /dev/null
+++ b/erpnext/config/integrations.py
@@ -0,0 +1,41 @@
+from __future__ import unicode_literals
+from frappe import _
+
+def get_data():
+ return [
+ {
+ "label": _("Payments"),
+ "icon": "fa fa-star",
+ "items": [
+ {
+ "type": "doctype",
+ "name": "Stripe Settings",
+ "description": _("Stripe payment gateway settings"),
+ },
+ {
+ "type": "doctype",
+ "name": "GoCardless Settings",
+ "description": _("GoCardless payment gateway settings"),
+ },
+ {
+ "type": "doctype",
+ "name": "GoCardless Mandate",
+ "description": _("GoCardless SEPA Mandate"),
+ }
+ ]
+ },
+ {
+ "label": _("Settings"),
+ "items": [
+ {
+ "type": "doctype",
+ "name": "Woocommerce Settings"
+ },
+ {
+ "type": "doctype",
+ "name": "Shopify Settings",
+ "description": _("Connect Shopify with ERPNext"),
+ }
+ ]
+ }
+ ]