[ADD] setup.py

This commit is contained in:
OCA-git-bot 2019-11-08 10:50:45 +00:00
parent b7301e26e7
commit 61f3553d20
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.20191108.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-knowledge",
description="Meta package for oca-knowledge Odoo addons",
version=version,
install_requires=[
'odoo13-addon-knowledge',
],
classifiers=[
'Programming Language :: Python',
'Framework :: Odoo',
]
)

View File

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

6
setup/knowledge/setup.py Normal file
View File

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