[ADD] setup.py

This commit is contained in:
OCA-git-bot
2019-01-14 23:04:03 +00:00
parent ca8619c5eb
commit 9a19aa4681
6 changed files with 29 additions and 0 deletions

View File

@@ -0,0 +1 @@
11.0.20190114.0

View File

@@ -0,0 +1,2 @@
[bdist_wheel]
universal=1

View File

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

View File

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

View File

@@ -0,0 +1,2 @@
[bdist_wheel]
universal=1

View File

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