Enable integration of Plinth with Travis-CI
Created by: BobGirard
This pull request includes file additions and modifications to enable the integration of Plinth installation and testing with Travis-CI (https://travis-ci.org/).
- Add file .travis.yml as the Travis configuration file for the project.
- Add file requirements.txt to specify project package dependencies to be installed via pip.
- In setup.py, remove 'pygobject' from, and add 'pyyaml' to, the install_requires argument.
- In setup.py, rename module plinth.tests.coverage.test_coverage to coverage.
- In setup.py, rename class plinth.tests.coverage.coverage.TestCoverageCommand to CoverageCommand.
- Add file init.py to allow builds under Python 3.2.
- Rename file plinth/tests/coverage/test_coverage.py to coverage.py.
- In plinth/tests/coverage/coverage.py, rename class TestCoverageCommand to CoverageCommand.