acsone / setuptools-odoo

A library to help packaging Odoo addons with setuptools. It mainly populates the usual setup.py keywords from the Odoo manifest files.
GNU Lesser General Public License v3.0
41 stars 46 forks source link

How can I use this tool for Odoo Installed in windows? #33

Closed MohsenWaleed closed 3 years ago

MohsenWaleed commented 5 years ago

How can I use it for Odoo Installed in windows?

sbidoul commented 5 years ago

setuptools-odoo is untested on Windows.

That said, the only thing that may not work on Windows is setuptools-odoo-make-default's reliance on symbolic links.

For the rest, nothing should prevent it to work in theory, if you structure your addon like this (for v11+ on python3):

setup.py
odoo/addons/__manifest__.py
odoo/addons/__init__.py
odoo/addons/...
sbidoul commented 4 years ago

Also, installing OCA addons with pip install odoo13-addon-{addon_name} should just work on windows.