Metadata-Version: 2.4
Name: mpds
Version: 0.1.0a0
License-Expression: Apache-2.0
Requires-Python: <3.15,>=3.10
Description-Content-Type: text/markdown
License-File: LICENSE.txt
Requires-Dist: semver
Requires-Dist: numpy
Requires-Dist: av<17,>=16
Requires-Dist: python-mimeparse
Requires-Dist: bidict
Requires-Dist: intervaltree
Requires-Dist: sortedcontainers
Requires-Dist: pillow
Requires-Dist: typing_extensions; python_version <= "3.10"
Provides-Extra: benchmark
Requires-Dist: prefixed; extra == "benchmark"
Provides-Extra: test
Requires-Dist: pytest; extra == "test"
Requires-Dist: pytest-memray; extra == "test"
Requires-Dist: mpds[benchmark]; extra == "test"
Provides-Extra: lint
Requires-Dist: ruff; extra == "lint"
Provides-Extra: doc
Requires-Dist: jupyter-book<2.0.0,>=1.0.0; extra == "doc"
Requires-Dist: sphinxcontrib-mermaid; extra == "doc"
Dynamic: license-file

# mpds-python
Motion-Picture DataSet

## Usage
Audience: general public.

Refer to the documentation published 
[here](https://mpds-python.readthedocs.io)
or the `docs` directory.

## Development
Audience: package developers/contributors.

Directory structure:
- `packages`: Package source code.
- `docs`: Package documentation.

Setup:
- Clone this repository and `cd` into it.
- Run `pip install --editable .`.
- (Optional) Start unit testing: 
    - Run `pip install --editable .[test]`.
    - Run `pytest packages/`.
- (Optional) Build the documentation:
    - Run `pip install --editable .[doc]`.
    - Run `jupyter-book build docs/`.
