[ADD] setup.py [ci skip]

pull/265/head
OCA Git Bot 2018-04-19 11:54:34 +02:00
parent 4c7f29ecc5
commit 1098c281cf
3 changed files with 21 additions and 0 deletions

View File

@ -0,0 +1 @@
11.0.20180419.0

View File

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

View File

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