Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,17 @@ package relies on Python 3 Matplotlib plotting and movie animations
using the and `matplotlib.animation`
libraries. This package uses mpeg as a back end renderer to create
the rendered animations.


## Development

Install `ffmpeg` using your system package manager, e.g.
`sudo apt install ffmpeg` on Ubuntu
`brew install ffmpeg` on MacOS (with [homebrew](https://brew.sh/))


1. `git clone https://github.com/DerekHarter/motionrender`
2. `cd motionrender`
3. `pip install -r requirements-dev.txt`
4. `pip install -e .` Install in dev mode so changes are automatically updated
5. `pytest` to run all tests or `pytest -k testname ` to run a specific test
2 changes: 2 additions & 0 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
-r requirements.txt
pytest
2 changes: 2 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
pandas
matplotlib
5 changes: 4 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@
DESCRIPTION = 'A motion tracking 3D movier render'
LONG_DESCRIPTION = 'A package that renders movies from 3D motion tracked data, for example from 3D skeleton joint tracking data'

with open("requirements.txt") as f:
requirements = f.read().splitlines()

setup(
name="motionrender",
version=VERSION,
Expand All @@ -13,7 +16,7 @@
author_email="Derek.Harter@tamuc.edu",
license='GPL-3',
packages=find_packages(),
install_requires=[],
install_requires=requirements,
keywords='motion tracking, 3D rendering',
classifiers= [
"Development Status :: 3 - Alpha",
Expand Down