~openerp-dev/openobject-server/trunk-bug-1098300-dhr

« back to all changes in this revision

Viewing changes to openerpcommand/addons/bench_sale_mrp/__openerp__.py

  • Committer: Vo Minh Thu
  • Date: 2013-01-11 13:46:57 UTC
  • Revision ID: vmt@openerp.com-20130111134657-im2f3uqjluyo4pm6
[ADD] oe: provides sane (unfucked) command-line interface.

The implementation is far from perfect. Some improvements are waiting in
its previous location: lp:~openerp/openerp-command.

Some docs are provided, see doc/openerp-command.rst and
doc/adding-command.rst.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# -*- coding: utf-8 -*-
 
2
{
 
3
    'name': 'bench_sale_mrp',
 
4
    'version': '0.1',
 
5
    'category': 'Benchmarks',
 
6
    'description': """Prepare some data to run a benchmark.""",
 
7
    'author': 'OpenERP SA',
 
8
    'maintainer': 'OpenERP SA',
 
9
    'website': 'http://www.openerp.com',
 
10
    'depends': ['base', 'sale_mrp'],
 
11
    'data': ['data.yml'],
 
12
    'installable': True,
 
13
    'auto_install': False,
 
14
}
 
15
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: