[ADD] setup.py

This commit is contained in:
OCA-git-bot 2020-10-16 09:57:10 +00:00
parent 601205f71b
commit 230fbaa08a
2 changed files with 18 additions and 0 deletions

View File

@ -0,0 +1 @@
14.0.20201016.0

View File

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