Skip to content

Commit 3a5d58c

Browse files
committed
removed the remaining opentimelineio_contrib statements and documentation
Signed-off-by: apetrynet <[email protected]>
1 parent 7f1ee9c commit 3a5d58c

File tree

4 files changed

+27
-28
lines changed

4 files changed

+27
-28
lines changed

CMakeLists.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@ option(OTIO_PYTHON_INSTALL "Install the Python bindings" OFF)
3131
option(OTIO_DEPENDENCIES_INSTALL "Install OTIO's C++ header dependencies (Imath)" ON)
3232
option(OTIO_INSTALL_PYTHON_MODULES "Install OTIO pure Python modules/files" ON)
3333
option(OTIO_INSTALL_COMMANDLINE_TOOLS "Install the OTIO command line tools" ON)
34-
option(OTIO_INSTALL_CONTRIB "Install the opentimelineio_contrib Python package" ON)
3534
option(OTIO_FIND_IMATH "Find Imath using find_package" OFF)
3635
option(OTIO_FIND_RAPIDJSON "Find RapidJSON using find_package" OFF)
3736
set(OTIO_PYTHON_INSTALL_DIR "" CACHE STRING "Python installation dir (such as the site-packages dir)")

docs/tutorials/otio-serialized-schema.md

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -29,24 +29,24 @@ changes. If it needs to be updated and this file regenerated, run:
2929
```
3030
Adapters convert between OTIO and other formats.
3131
32-
Note that this class is not subclassed by adapters. Rather, an adapter is
33-
a python module that implements at least one of the following functions:
32+
Note that this class is not subclassed by adapters. Rather, an adapter is
33+
a python module that implements at least one of the following functions:
3434
35-
.. code-block:: python
35+
.. code-block:: python
3636
37-
write_to_string(input_otio)
38-
write_to_file(input_otio, filepath) (optionally inferred)
39-
read_from_string(input_str)
40-
read_from_file(filepath) (optionally inferred)
37+
write_to_string(input_otio)
38+
write_to_file(input_otio, filepath) (optionally inferred)
39+
read_from_string(input_str)
40+
read_from_file(filepath) (optionally inferred)
4141
42-
...as well as a small json file that advertises the features of the adapter
43-
to OTIO. This class serves as the wrapper around these modules internal
44-
to OTIO. You should not need to extend this class to create new adapters
45-
for OTIO.
42+
...as well as a small json file that advertises the features of the adapter
43+
to OTIO. This class serves as the wrapper around these modules internal
44+
to OTIO. You should not need to extend this class to create new adapters
45+
for OTIO.
4646
47-
For more information: https://opentimelineio.readthedocs.io/en/latest/tutorials/write-an-
47+
For more information: https://opentimelineio.readthedocs.io/en/latest/tutorials/write-an-
4848
adapter.html. # noqa
49-
49+
5050
```
5151

5252
parameters:
@@ -261,14 +261,14 @@ parameters:
261261
```
262262
Defines an OTIO plugin Manifest.
263263
264-
This is considered an internal OTIO implementation detail.
264+
This is considered an internal OTIO implementation detail.
265265
266-
A manifest tracks a collection of plugins and enables finding them by name
267-
or other features (in the case of adapters, what file suffixes they
268-
advertise support for).
266+
A manifest tracks a collection of plugins and enables finding them by name
267+
or other features (in the case of adapters, what file suffixes they
268+
advertise support for).
269+
270+
For more information, consult the documentation.
269271
270-
For more information, consult the documentation.
271-
272272
```
273273

274274
parameters:
@@ -287,8 +287,8 @@ parameters:
287287

288288
```
289289
A class of plugin that is encoded in a python module, exposed via a
290-
manifest.
291-
290+
manifest.
291+
292292
```
293293

294294
parameters:

docs/tutorials/write-an-adapter.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -240,4 +240,5 @@ def export_timeline(timeline):
240240

241241
## Examples
242242

243-
OTIO includes a number of "core" (supported by the core team) adapters in `opentimelineio/adapters` as well as a number of community supported adapters in `opentimelineio_contrib/adapters`.
243+
OTIO includes "core" adapters for `.otio`, `.otiod` and `otioz` files found in in `opentimelineio/adapters`.
244+
In addition to these you'll find many more adapters in the various repositories under the [OpenTimelineIO Organization](https://github.com/OpenTimelineIO)

setup.cfg

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ description_file = README.md
88
# flake8
99
###############################################################################
1010
[flake8]
11-
exclude =
11+
exclude =
1212
.tox
1313
*.egg
1414
build
@@ -48,20 +48,19 @@ ignore-bad-ideas =
4848
###############################################################################
4949
[coverage:run]
5050
branch = True
51-
source =
51+
source =
5252
opentimelineio
53-
opentimelineio_contrib
5453
./tests
5554

5655
[coverage:paths]
57-
otio =
56+
otio =
5857
src/py-opentimelineio/opentimelineio
5958
*site-packages/opentimelineio
6059

6160
[coverage:report]
6261
include =*
6362
# Regexes for lines to exclude from consideration
64-
omit =
63+
omit =
6564
*aaf2*
6665
*pkg_resources*
6766
*pbr*

0 commit comments

Comments
 (0)