[IMP] barcodes: remove AGPL headers (code still under AGPL)
[odoo/odoo.git] / addons / barcodes / __openerp__.py
1 {
2     'name': 'Barcodes',
3     'version': '1.0',
4     'category': '',
5     'sequence': 6,
6     'summary': 'Barcode Nomenclatures Setup',
7     'description': """
8
9 =======================
10
11 This module defines barcode nomenclatures whose rules identify e.g. products, locations.
12 It contains the following features:
13 - Barcode patterns to identify barcodes containing a numerical value (e.g. weight, price)
14 - Definitin of barcode aliases that allow to identify the same product with different barcodes
15 - Unlimited barcode patterns and definitions. 
16 - Barcode EAN13 encoding supported
17 """,
18     'author': 'OpenERP SA',
19     'depends': ['web'],
20     'website': '',
21     'data': [
22         'data/barcodes_data.xml',
23         'barcodes_view.xml',
24         'security/ir.model.access.csv',
25         'views/templates.xml',
26     ],
27     'installable': True,
28     'auto_install': False,
29 }
30
31 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: