[ADD] setup.py

This commit is contained in:
OCA-git-bot
2019-04-29 11:06:15 +00:00
parent 4767f8c050
commit ab14e033ec
4 changed files with 25 additions and 0 deletions

View File

@@ -0,0 +1 @@
12.0.20190429.0

View File

@@ -0,0 +1,17 @@
import setuptools
with open('VERSION.txt', 'r') as f:
version = f.read().strip()
setuptools.setup(
name="odoo12-addons-oca-rma",
description="Meta package for oca-rma Odoo addons",
version=version,
install_requires=[
'odoo12-addon-product_warranty',
],
classifiers=[
'Programming Language :: Python',
'Framework :: Odoo',
]
)

View File

@@ -0,0 +1 @@
../../../../product_warranty

View File

@@ -0,0 +1,6 @@
import setuptools
setuptools.setup(
setup_requires=['setuptools-odoo'],
odoo_addon=True,
)