Skip to content
This repository has been archived by the owner on May 26, 2023. It is now read-only.

Latest commit

 

History

History
65 lines (41 loc) · 1.56 KB

building.rst

File metadata and controls

65 lines (41 loc) · 1.56 KB

Building from source

Note

Unless you are doing any modifications, there should be no need to build the plugin yourself. See :ref:`getting_started` for instructions on how to install and run the plugin.

Building plugin

You can build manually from the source for more control. First obtain a copy of the source by either downloading the zipball or cloning the public repository:

git clone git@bitbucket.org:ftrack/ftrack-connect-rv.git

Build the plugin (Will build the plugin and dependencies in build/plugin):

python setup.py build_plugin

See :ref:`getting_started` for instructions on how to install and run the plugin.

Building documentation from source

To build the documentation from source:

python setup.py build_sphinx

Then view in your browser:

file:///path/to/ftrack-connect-rv/build/doc/html/index.html

Running tests against the source

With a copy of the source it is also possible to run the unit tests:

python setup.py test

Dependencies

Additional For building

Additional For testing