@@ -6,27 +6,30 @@ MVR specification as per https://gdtf.eu/mvr/prologue/introduction/
66
77See source code for documentation. Naming conventions, in general, are
88identical to that on the GDTF, CamelCase is replaced with
9- underscore_delimiters .
9+ underscore \_ delimiters .
1010
11- Used for example by [ BlenderDMX] ( https://github.com/open-stage/blender-dmx ) .
11+ This library is used for example by [ BlenderDMX] ( https://blenderdmx.eu )
12+ ([ BlenderDMX on GitHub] ( https://github.com/open-stage/blender-dmx ) ).
1213
13- [ Source code] ( https://github.com/open-stage/python-mvr )
14-
15- [ PyPi page] ( https://pypi.org/project/pymvr/ )
14+ [ GitHub Page] ( https://github.com/open-stage/python-mvr ) , [ PyPi Page] ( https://pypi.org/project/pymvr/ )
1615
1716[ ![ Pytest] ( https://github.com/open-stage/python-mvr/actions/workflows/run-tests.yaml/badge.svg )] ( https://github.com/open-stage/python-mvr/actions/workflows/run-tests.yaml )
1817[ ![ Check links in markdown] ( https://github.com/open-stage/python-mvr/actions/workflows/check-links.yaml/badge.svg )] ( https://github.com/open-stage/python-mvr/actions/workflows/check-links.yaml )
1918![ GitHub Tag] ( https://img.shields.io/github/v/tag/open-stage/python-mvr )
2019
20+ ## Status
21+
22+ - Reading and Writing of most aspects of MVR should be covered.
23+
2124## Installation
2225
23- - with uv:
26+ - With uv:
2427
2528``` bash
2629uv add pymvr
2730```
2831
29- - with pip
32+ - With pip
3033
3134``` bash
3235pip install pymvr
@@ -130,10 +133,6 @@ See [BlenderDMX](https://github.com/open-stage/blender-dmx) and
130133[ tests] ( https://github.com/open-stage/python-mvr/tree/master/tests ) for
131134reference implementation.
132135
133- ## Status
134-
135- - Reading and Writing of all aspects of MVR should be covered.
136-
137136## Development
138137
139138PRs appreciated. You can use [ uv] ( https://docs.astral.sh/uv/ ) to get the
@@ -161,13 +160,13 @@ uv run pre-commit install
161160
162161### Testing
163162
164- - to test, use pytest
163+ - To test, use pytest
165164
166165``` bash
167166uv run pytest
168167```
169168
170- - to test typing with mypy use:
169+ - To test typing with mypy use:
171170
172171``` bash
173172uv run pytest --mypy -m mypy pymvr/* py
0 commit comments