summaryrefslogtreecommitdiff
path: root/addons/sales_team/__manifest__.py
diff options
context:
space:
mode:
Diffstat (limited to 'addons/sales_team/__manifest__.py')
-rw-r--r--addons/sales_team/__manifest__.py32
1 files changed, 32 insertions, 0 deletions
diff --git a/addons/sales_team/__manifest__.py b/addons/sales_team/__manifest__.py
new file mode 100644
index 00000000..ae2cd700
--- /dev/null
+++ b/addons/sales_team/__manifest__.py
@@ -0,0 +1,32 @@
+# -*- coding: utf-8 -*-
+# Part of Odoo. See LICENSE file for full copyright and licensing details.
+
+{
+ 'name': 'Sales Teams',
+ 'version': '1.0',
+ 'category': 'Sales/Sales',
+ 'summary': 'Sales Teams',
+ 'description': """
+Using this application you can manage Sales Teams with CRM and/or Sales
+=======================================================================
+ """,
+ 'website': 'https://www.odoo.com/page/crm',
+ 'depends': ['base', 'mail'],
+ 'data': [
+ 'security/sales_team_security.xml',
+ 'security/ir.model.access.csv',
+ 'data/crm_team_data.xml',
+ 'views/assets.xml',
+ 'views/crm_tag_views.xml',
+ 'views/crm_team_views.xml',
+ 'views/mail_activity_views.xml',
+ 'views/res_partner_views.xml',
+ ],
+ 'demo': [
+ 'data/crm_team_demo.xml',
+ 'data/crm_tag_demo.xml',
+ ],
+ 'installable': True,
+ 'auto_install': False,
+ 'license': 'LGPL-3',
+}