Skip to content

Commit

Permalink
- Implement units
Browse files Browse the repository at this point in the history
- Add autodoc via Sphinx
- Update README
- Add docstrings
- Add tests
- Implement node << node
- Extend listRelatives
- Extend listConnections
- Rename Bool attribute
- Reduce MTypeIds to essentials
  • Loading branch information
mottosso committed Jan 8, 2018
1 parent 358871d commit 2595d11
Show file tree
Hide file tree
Showing 33 changed files with 2,227 additions and 1,036 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
*.pyc
docs/build/**
19 changes: 19 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
FROM mottosso/maya:2017

RUN wget https://bootstrap.pypa.io/get-pip.py && \
mayapy get-pip.py && \
mayapy -m pip install \
nose \
nose-exclude \
coverage \
sphinx \
six \
sphinxcontrib-napoleon \
python-coveralls

# Avoid creation of auxilliary files
ENV PYTHONDONTWRITEBYTECODE=1

WORKDIR /workspace

ENTRYPOINT mayapy
Loading

0 comments on commit 2595d11

Please sign in to comment.