[ADD] setup.py

This commit is contained in:
OCA-git-bot 2019-10-11 10:00:25 +00:00
parent 1741af2c5c
commit 75b3811e57
6 changed files with 29 additions and 0 deletions

View File

@ -0,0 +1,2 @@
# addons listed in this file are ignored by
# setuptools-odoo-make-default (one addon per line)

2
setup/README Normal file
View File

@ -0,0 +1,2 @@
To learn more about this directory, please visit
https://pypi.python.org/pypi/setuptools-odoo

View File

@ -0,0 +1 @@
13.0.20191011.0

View File

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

View File

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

View File

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