Skip to content

Commit

Permalink
add .travis.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
eriktaubeneck committed Jun 25, 2014
1 parent f1cdd33 commit 34dcae2
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 1 deletion.
13 changes: 13 additions & 0 deletions .travis.yml
@@ -0,0 +1,13 @@
language: python
python:
- "2.7"
- "3.3"
- "pypy"
install:
- pip install -r dev_requirements.txt

script: nosetests
after_success:
- pip install coveralls
- coverage run --source=ordbok setup.py -q nosetests
- coveralls
6 changes: 6 additions & 0 deletions README.md
@@ -1,5 +1,11 @@
# Ordbok

[![Build Status](https://travis-ci.org/alphaworksinc/ordbok.svg?branch=master)](https://travis-ci.org/alphaworksinc/ordbok)
[![Coverage Status](https://coveralls.io/repos/alphaworksinc/ordbok/badge.png?branch=master)](https://coveralls.io/r/alphaworksinc/ordbok?branch=master)
[![Latest Version](https://pypip.in/version/ordbok/badge.png)](https://pypi.python.org/pypi/ordbok/)
[![Downloads](https://pypip.in/download/ordbok/badge.png)](https://pypi.python.org/pypi/ordbok/)
[![License](https://pypip.in/license/ordbok/badge.png)](https://pypi.python.org/pypi/ordbok/)

As your application grows, configuration can get a bit chaotic, especially if you have multiple versions (local, deployed, staging, etc.) Ordbok brings order to that chaos.

Ordbok abstracts the loading of a configuration from YAML files into a Python dictionary, and also has a specific setup for use with Flask. See [TODO](#todo) for plans to expand this.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -20,7 +20,7 @@
py_modules=['ordbok'],
zip_safe=False,
include_package_data=True,
playforms='any',
platforms='any',
install_requires=[
'pyyaml'
],
Expand Down

0 comments on commit 34dcae2

Please sign in to comment.