Skip to content

Commit ffafef7

Browse files
committed
Initial commit
0 parents  commit ffafef7

File tree

11 files changed

+776
-0
lines changed

11 files changed

+776
-0
lines changed

.gitignore

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
venv/
2+
data/
3+
build/
4+
*.egg-info
5+
.DS_Store
6+
.cache/
7+
.coverage
8+
*.so
9+
*.c
10+
*.html
11+
*.pyc
12+
__pycache__/
13+
dist/

.travis.yml

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
language: python
2+
sudo: false
3+
4+
notifications:
5+
email: false
6+
7+
python:
8+
- "2.7"
9+
- "3.5"
10+
- "3.6"
11+
- "nightly"
12+
- "pypy2.7-5.8.0"
13+
- "pypy3.5-5.8.0"
14+
15+
addons:
16+
apt:
17+
packages:
18+
- pandoc
19+
20+
install:
21+
- pip install -v -e .
22+
- pip install -r tests/requirements.txt
23+
24+
script: PYTHONPATH=$PWD pytest
25+
26+
after_success:
27+
- coveralls
28+
29+
before_deploy:
30+
- pip install pypandoc
31+
32+
deploy:
33+
provider: pypi
34+
user: tammoippen
35+
password:
36+
secure: RRm/32GM4WLDSv3TEjca/giPOeh0F49omzeDOq690uBWtIiqUzBzp7eCCcWrw+6OdVttUHhwsn4KCDhJR9jIAuFraFF6+CmMq4iwsMmeAVL9kEWJRIN05cR5hKkn7Jn/WcH5XOE24/8/4h3B8dvA3R/KK3qejpw6VfPXSiltA9cuerc/FawyHtIdrWDP+fCNYPcR9FWcjwRzpL+Rtyt5ymgQGBDyoQIQkhQ2kE4h4QVj0PxloArCzr0GoyBFvYkhZsY26CloRZu8+ng/jEeu4VxMNrbxr5NaGs6YgXxN5+jxnRWeDRho842JYxc196xiIbzbWJhykCATZjw7H+cPsJARhoUzHfqRXHdcb98a+RWxX9sMlU9faEZFHDb/sUE7MynQL1ZyWiSWfsC4I2MUJDvt0h9skjqYt2j6kKN5u0qfNZiUwofNLz5YPysISH57d63PKD/BLfO+5oHhBSvruB1x9GwlbnqenIi2Vz0SRhbH9PEyAEDA3MZejeiJuj2RTxNqXMnbT9oo9OG4TJcgn+T8y4/aH+w1yrf94A0udgqYrddBcBpbMgho4ewo1jI9GQ0t0ihYfffvBMdGCHrLDMb+VQrHb4FCDTP3tXhpi/ZgxfoJGGpEKRrPSOqbMIupZiKKQ1F5RwQjFEbBJ03NopDdv8DlYbuZjQ69dau5hek=
37+
on:
38+
branch: master
39+
tags: true
40+
python: "3.6"

LICENSE.txt

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
The MIT License
2+
3+
Copyright (c) 2017 Tammo Ippen, tammo.ippen@posteo.de
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in
13+
all copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21+
THE SOFTWARE.

Pipfile

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
[[source]]
2+
url = "https://pypi.python.org/simple"
3+
verify_ssl = true
4+
5+
6+
[packages]
7+
"-e ." = "*"
8+
9+
[dev-packages]

Pipfile.lock

Lines changed: 30 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

Lines changed: 261 additions & 0 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)