Skip to content

Commit 0d19d2e

Browse files
authored
Merge pull request #2 from Webcampak/develop
Initial release into the master branch
2 parents 202e25f + cf8e2a3 commit 0d19d2e

Some content is hidden

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

85 files changed

+11162
-2
lines changed

.gitignore

Lines changed: 96 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,96 @@
1+
bin/
2+
include/
3+
local/
4+
pip-selfcheck.json
5+
share/
6+
7+
# Byte-compiled / optimized / DLL files
8+
.idea/
9+
__pycache__/
10+
*.py[cod]
11+
*$py.class
12+
13+
# C extensions
14+
*.so
15+
16+
# Distribution / packaging
17+
.Python
18+
env/
19+
build/
20+
develop-eggs/
21+
dist/
22+
downloads/
23+
eggs/
24+
.eggs/
25+
lib/
26+
lib64/
27+
parts/
28+
sdist/
29+
var/
30+
*.egg-info/
31+
.installed.cfg
32+
*.egg
33+
34+
# PyInstaller
35+
# Usually these files are written by a python script from a template
36+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
37+
*.manifest
38+
*.spec
39+
40+
# Installer logs
41+
pip-log.txt
42+
pip-delete-this-directory.txt
43+
44+
# Unit test / coverage reports
45+
htmlcov/
46+
.tox/
47+
.coverage
48+
.coverage.*
49+
.cache
50+
nosetests.xml
51+
coverage.xml
52+
*,cover
53+
.hypothesis/
54+
55+
# Translations
56+
*.mo
57+
*.pot
58+
59+
# Django stuff:
60+
*.log
61+
local_settings.py
62+
63+
# Flask stuff:
64+
instance/
65+
.webassets-cache
66+
67+
# Scrapy stuff:
68+
.scrapy
69+
70+
# Sphinx documentation
71+
docs/_build/
72+
73+
# PyBuilder
74+
target/
75+
76+
# IPython Notebook
77+
.ipynb_checkpoints
78+
79+
# pyenv
80+
.python-version
81+
82+
# celery beat schedule file
83+
celerybeat-schedule
84+
85+
# dotenv
86+
.env
87+
88+
# virtualenv
89+
venv/
90+
ENV/
91+
92+
# Spyder project settings
93+
.spyderproject
94+
95+
# Rope project settings
96+
.ropeproject

.travis.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
before_install:
2+
- sudo apt-get -qq update
3+
- sudo apt-get install -y python-rrdtool
4+
- sudo apt-get install -y librrd-dev
5+
language: python
6+
python:
7+
- "2.6"
8+
- "2.7"
9+
- "3.2"
10+
- "3.3"
11+
- "3.4"
12+
# does not have headers provided, please ask https://launchpad.net/~pypy/+archive/ppa
13+
# maintainers to fix their pypy-dev package.
14+
- "pypy"
15+
# command to install dependencies
16+
os:
17+
- linux
18+
install:
19+
- pip install .
20+
- pip install -r requirements.txt
21+
# command to run tests
22+
script:
23+
- webcampak --help
24+
- webcampak capture --help
25+
- webcampak stats --help
26+
- webcampak system --help
27+
- webcampak video --help
28+
- webcampak xfer --help

0 commit comments

Comments
 (0)