Skip to content
This repository has been archived by the owner on May 22, 2024. It is now read-only.

Latest commit

 

History

History
47 lines (28 loc) · 928 Bytes

README.rst

File metadata and controls

47 lines (28 loc) · 928 Bytes

pymesync

https://travis-ci.org/osuosl/pymesync.svg?branch=master

Python module for TimeSync. Compatible with Python versions 2.7 and 3.3+.

Pymesync documentation can be found on readthedocs

We use virtualenv for development and testing:

$ virtualenv venv
$ source venv/bin/activate
(venv) $ pip install -r requirements.txt

If you get an error when trying to run pip install, make sure that you have an up-to-date version of pip

(venv) $ pip install --upgrade pip

For usage documentation, build our docs:

(venv) $ cd docs
(venv) $ make html
(venv) $ <browser> build/html/index.html

To test the source code:

(venv) $ make test
(venv) $ make flake

or

(venv) $ make verify