File tree 10 files changed +36
-4
lines changed
10 files changed +36
-4
lines changed Original file line number Diff line number Diff line change
1
+ [report]
2
+ omit = *noseplugin*
Original file line number Diff line number Diff line change
1
+ # EditorConfig helps developers define and maintain consistent
2
+ # coding styles between different editors and IDEs
3
+ # editorconfig.org
4
+ root = true
5
+
6
+ [* .{py,rst,txt} ]
7
+ indent_style = space
8
+ trim_trailing_whitespace = true
9
+ indent_size = 4
10
+ end_of_line = LF
11
+ charset = utf-8
12
+ insert_final_newline = true
Original file line number Diff line number Diff line change
1
+ language : python
2
+ python :
3
+ - " 2.7"
4
+ install :
5
+ - pip install -r requirements.txt
6
+ - pip install -r test-requirements.txt
7
+ script :
8
+ - nosetests
9
+ - flake8 pywebpush
10
+ after_success :
11
+ - codecov
Original file line number Diff line number Diff line change
1
+ ## 0.3 (2016-04-27)
2
+ feat: added travis, normalized directories
3
+
4
+
1
5
## 0.2 (2016-04-27)
2
6
feat: Added tests, restructured code
3
7
Original file line number Diff line number Diff line change
1
+ [ ![ Build_Status] ( https://travis-ci.org/jrconlin/pywebpush.svg?branch=master )] ( https://travis-ci.org/jrconlin/pywebpush )
2
+
1
3
# Webpush Data encryption library for Python
2
4
3
5
This is a work in progress.
File renamed without changes.
Original file line number Diff line number Diff line change 7
7
from nose .tools import eq_ , ok_
8
8
import pyelliptic
9
9
10
- from webpush import WebPusher , WebPushException
10
+ from pywebpush import WebPusher , WebPushException
11
11
12
12
13
13
class WebpushTestCase (unittest .TestCase ):
Original file line number Diff line number Diff line change 1
1
http-ece == 0.5.0
2
2
python-jose == 0.5.6
3
3
requests == 2.9.1
4
+ flake8
Original file line number Diff line number Diff line change @@ -5,4 +5,4 @@ cover-tests=True
5
5
cover-erase =True
6
6
with-coverage =True
7
7
detailed-errors =True
8
- cover-package =webpush
8
+ cover-package =pywebpush
Original file line number Diff line number Diff line change 3
3
4
4
from setuptools import setup
5
5
6
- __version__ = "0.2 "
6
+ __version__ = "0.3 "
7
7
8
8
9
9
def read_from (file ):
@@ -25,7 +25,7 @@ def read_from(file):
25
25
CHANGES = f .read ()
26
26
27
27
setup (name = "pywebpush" ,
28
- version = "0.2" ,
28
+ version = __version__ ,
29
29
description = 'WebPush publication library' ,
30
30
long_description = README + '\n \n ' + CHANGES ,
31
31
classifiers = ["Topic :: Internet :: WWW/HTTP" ,
You can’t perform that action at this time.
0 commit comments