Browse Source

[ADD] Add setup.py

pull/491/head
Adrien Peiffer (ACSONE) 8 years ago
parent
commit
cd34dadaf2
  1. 1
      setup/web_notify/odoo/__init__.py
  2. 1
      setup/web_notify/odoo/addons/__init__.py
  3. 1
      setup/web_notify/odoo/addons/web_notify
  4. 6
      setup/web_notify/setup.py

1
setup/web_notify/odoo/__init__.py

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

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

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

1
setup/web_notify/odoo/addons/web_notify

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

6
setup/web_notify/setup.py

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