~vauxoo/addons-vauxoo/6.0-trunk

« back to all changes in this revision

Viewing changes to mrp_bom_constraint/__openerp__.py

  • Committer: Moises Lopez
  • Date: 2014-10-09 21:30:17 UTC
  • mfrom: (879.1.7 trunk-addons-vauxoo)
  • Revision ID: moylop260@vauxoo.com-20141009213017-u3jicyg8xery3r8c
[MERGE] upforward 7.0
-Fix unused import
-Fix relative import
-Fix full path import
-Fix trailing whitespace pylint error C0303
-Fix autopep8 ignoring E501 & E128
-Fix reimported
-Fix __openerp__.py files
-Translate update

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
#    You should have received a copy of the GNU Affero General Public License
21
21
#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
22
22
################################################################################
 
23
#"license" : "AGPL-3",
23
24
{
24
 
    "name" : "Constraint product_uom",
25
 
    "version" : "1.0",
26
 
    "depends" : ['mrp'],
27
 
    "author" : "Vauxoo",
28
 
    #"license" : "AGPL-3",
29
 
    "description" : """This module add constraint in mrp_bom
30
 
    """,
31
 
    "website" : "http://vauxoo.com",
32
 
    "category" : "Generic Modules",
33
 
    "init_xml" : [],
34
 
    "demo_xml" : [],
35
 
    "test": [],
36
 
    "update_xml" : [
37
 
    ],
38
 
    "active": False,
39
 
    "installable": True,
40
 
}
41
 
 
 
25
    "name": "Constraint product_uom", 
 
26
    "version": "1.0", 
 
27
    "author": "Vauxoo", 
 
28
    "category": "Generic Modules", 
 
29
    "description": """This module add constraint in mrp_bom
 
30
    """, 
 
31
    "website": "http://vauxoo.com", 
 
32
    "license": "", 
 
33
    "depends": [
 
34
        "mrp"
 
35
    ], 
 
36
    "demo": [], 
 
37
    "data": [], 
 
38
    "test": [], 
 
39
    "js": [], 
 
40
    "css": [], 
 
41
    "qweb": [], 
 
42
    "installable": True, 
 
43
    "auto_install": False, 
 
44
    "active": False
 
45
}
 
 
b'\\ No newline at end of file'