Browse Source

[ADD] setup.py

pull/928/head
OCA Git Bot 6 years ago
parent
commit
cbb3132c63
  1. 2
      setup/_metapackage/VERSION.txt
  2. 1
      setup/_metapackage/setup.py
  3. 1
      setup/web_action_conditionable/odoo/__init__.py
  4. 1
      setup/web_action_conditionable/odoo/addons/__init__.py
  5. 1
      setup/web_search_with_and/odoo/addons/web_search_with_and
  6. 2
      setup/web_search_with_and/setup.cfg
  7. 6
      setup/web_search_with_and/setup.py

2
setup/_metapackage/VERSION.txt

@ -1 +1 @@
11.0.20180424.0
11.0.20180526.0

1
setup/_metapackage/setup.py

@ -17,6 +17,7 @@ setuptools.setup(
'odoo11-addon-web_no_bubble',
'odoo11-addon-web_notify',
'odoo11-addon-web_responsive',
'odoo11-addon-web_search_with_and',
'odoo11-addon-web_searchbar_full_width',
'odoo11-addon-web_sheet_full_width',
'odoo11-addon-web_timeline',

1
setup/web_action_conditionable/odoo/__init__.py

@ -1 +0,0 @@
__import__('pkg_resources').declare_namespace(__name__)

1
setup/web_action_conditionable/odoo/addons/__init__.py

@ -1 +0,0 @@
__import__('pkg_resources').declare_namespace(__name__)

1
setup/web_search_with_and/odoo/addons/web_search_with_and

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

2
setup/web_search_with_and/setup.cfg

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

6
setup/web_search_with_and/setup.py

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