Browse Source

Merge pull request #1 from acsone/10.0-setup-ape

[ADD] Add setup.py
pull/491/head
Serpent Consulting Services Pvt Ltd 8 years ago
committed by GitHub
parent
commit
5a013ca32c
  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