Skip to content

Commit 93cf1e6

Browse files
committed
Merge branch '1.0.0'
2 parents 29d8fb3 + 7d0fb69 commit 93cf1e6

28 files changed

+1496
-280
lines changed

.editorconfig

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# EditorConfig is awesome: http://EditorConfig.org
2+
3+
# top-most EditorConfig file
4+
root = true
5+
6+
# Unix-style newlines with a newline ending every file
7+
[*]
8+
end_of_line = lf
9+
insert_final_newline = true
10+
11+
[*.py]
12+
indent_style = space
13+
indent_size = 4

.gitignore

Lines changed: 18 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,20 @@
1-
*.pyc
1+
__pycache__/
2+
*.py[cod]
3+
24
.Python
3-
bin/
4-
include/
5+
env/
6+
build/
7+
develop-eggs/
8+
dist/
9+
eggs/
510
lib/
6-
man/
7-
pusher/test_config.py
11+
lib64/
12+
parts/
13+
sdist/
14+
var/
15+
*.egg-info/
16+
.installed.cfg
17+
*.egg
18+
19+
pip-log.txt
20+
pip-delete-this-directory.txt

.travis.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
---
2+
language: python
3+
python:
4+
- "2.6"
5+
- "2.7"
6+
# - "3.2"
7+
- "3.3"
8+
install:
9+
- "python setup.py develop"
10+
- "pip install aiohttp"
11+
- "pip install tornado"
12+
- "pip install urlfetch"
13+
- if [[ $TRAVIS_PYTHON_VERSION == '2.6' ]]; then pip install unittest2; fi
14+
script: "python setup.py test"

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
2+
0.1.0 / 2014-09-01
3+
==================
4+
5+
First release

LICENSE

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2012 Pusher Ltd.
1+
Copyright (c) 2014 Pusher Ltd.
22

33
Permission is hereby granted, free of charge, to any person obtaining a copy
44
of this software and associated documentation files (the "Software"), to deal
@@ -16,4 +16,4 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1616
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1717
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1818
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
19-
THE SOFTWARE.
19+
THE SOFTWARE.

Makefile

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
2+
publish:
3+
python setup.py register
4+
python setup.py sdist upload
5+
python setup.py bdist_wheel upload
6+
7+
.PHONY: publish

0 commit comments

Comments
 (0)