Metadata-Version: 2.0
Name: odooku-odoo-website-forum
Version: 10.0.0
Summary: Odoo addons for the Forum app
Home-page: https://github.com/odooku/odooku-odoo
Author: Raymond Reggers - Adaptiv Design
Author-email: UNKNOWN
License: LGPLv3
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)
Requires-Dist: odooku-odoo-base (==10.0.0)
Requires-Dist: odooku-odoo-mail (==10.0.0)
Requires-Dist: odooku-odoo-website (==10.0.0)

Odooku Odoo
===========

**DISCLAIMER: All files packaged by this application are Copyright (c)
2004-2017 Odoo S.A. Original LICENSE and COPYRIGHT file is included. The
purpose of these packages is to provide an easy and reliable
installation method for Odoo.**

|Build Status|

Installation
------------

::

    pip install odooku-odoo-addons

This will install the full Odoo suite. If you want to keep installation
and dependency size to a minimal, feel free to install the seperate
packages like so:

::

    pip install odooku-odoo-[app]

Available options are:

-  account
-  account\_accountant
-  board
-  calendar
-  contacts
-  crm
-  **extra:** This package provides point of sale hardware modules and a
   few test modules.
-  fleet
-  hr
-  hr\_attendance
-  hr\_expense
-  hr\_holidays
-  hr\_recruitment
-  hr\_timesheet
-  im\_livechat
-  l10n\_fr\_certification
-  lunch
-  mail
-  maintenance
-  mass\_mailing
-  mrp
-  mrp\_repair
-  note
-  point\_of\_sale
-  project
-  project\_issue
-  purchase
-  sale
-  stock
-  survey
-  website
-  website\_blog
-  website\_event
-  website\_forum
-  website\_sale
-  website\_slides

Build requirements
------------------

While the Odoo source code does not require any distribution libraries,
it's dependencies do. In order for them to build successfully follow
instructions below:

Ubuntu 16.04 LTS
^^^^^^^^^^^^^^^^

::

    sudo apt-get install libpq-dev libxml2-dev libxslt1-dev libldap2-dev libsasl2-dev libssl-dev

OSX
^^^

::

    brew install postgresql

External dependencies
---------------------

At runtime Odoo will always require the LESSC compiler, and most likely
wkhtmltopdf.

lessc
^^^^^

This package does not install the LESSC compiler for you.

wkhtmltopdf
^^^^^^^^^^^

This package does not install the wkhtmltopdf binary for you.

Update policy
-------------

Tags under the release branch are published to pypi periodically. The
source for these builds are found at `the Odoo github
repository <https://github.com/odoo/odoo>`__. A commit is pinned and
tested, while the version number is simply bumped.

Frequency
^^^^^^^^^

Due to the large size of these packages, pypi pushes will be done once
every month. If you require more frequent updates, concider running the
setup script manually or using your own pypi server.

Version format
^^^^^^^^^^^^^^

[ODOO\_VERSION].[BUMP] For Odoo 10 the version format will be
10.0.[BUMP]

Using the setup script
----------------------

Install directly
^^^^^^^^^^^^^^^^

Running the setup.py script through pip will install the full Odoo
suite:

::

    [ODOO_VERSION=] [ODOO_URL=] pip install .

In order to install seperate features run like so:

::

    FEATURE=<feature> pip install .

This will always require the 'base' feature. In order to install the
'account' app you should run:

::

    FEATURE=base pip install .
    FEATURE=mail pip install .
    FEATURE=account pip install .

The best method to locally install is to use the 'bdist\_wheel' helper
script. This will generate wheels for all features. Which you can then
install using automatic dependency resolving:

::

    ./bdist_wheel.bash
    pip install --find-links file://$(pwd)/dist odooku-odoo-<feature>

Installing without all languages
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

Specify a comma seperated set of languages will reduce the install size
even further.

::

    [LANGUAGES=] pip install .

.. |Build Status| image:: https://travis-ci.org/odooku/odooku-odoo.svg?branch=10.0
   :target: https://travis-ci.org/odooku/odooku-odoo


