Skip to content

Commit 36bd23d

Browse files
author
Patrick R. Schmid
committedDec 14, 2015
Feature: Initial release
- ZoomClient with all components registered - TravisCI integration
1 parent 8b61ba8 commit 36bd23d

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

48 files changed

+2698
-0
lines changed
 

‎.gitignore

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
.DS_Store
2+
*.pyc
3+
.idea
4+
5+
# Packages
6+
*.egg
7+
*.egg-info
8+
dist
9+
build
10+
eggs
11+
parts
12+
bin
13+
var
14+
sdist
15+
develop-eggs
16+
.installed.cfg
17+
lib
18+
lib64

‎.travis.yml

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
language: python
2+
python:
3+
- "2.7"
4+
- "3.2"
5+
- "3.3"
6+
- "3.4"
7+
# does not have headers provided, please ask https://launchpad.net/~pypy/+archive/ppa
8+
# maintainers to fix their pypy-dev package.
9+
- "pypy"
10+
# command to install dependencies
11+
install:
12+
- pip install .
13+
- pip install -r requirements.txt
14+
# command to run tests
15+
script: nosetests

0 commit comments

Comments
 (0)
Please sign in to comment.