File tree Expand file tree Collapse file tree 10 files changed +36
-4
lines changed Expand file tree Collapse file tree 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+
15## 0.2 (2016-04-27)
26feat: Added tests, restructured code
37
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+
13# Webpush Data encryption library for Python
24
35This is a work in progress.
File renamed without changes.
Original file line number Diff line number Diff line change 77from nose .tools import eq_ , ok_
88import pyelliptic
99
10- from webpush import WebPusher , WebPushException
10+ from pywebpush import WebPusher , WebPushException
1111
1212
1313class WebpushTestCase (unittest .TestCase ):
Original file line number Diff line number Diff line change 11http-ece == 0.5.0
22python-jose == 0.5.6
33requests == 2.9.1
4+ flake8
Original file line number Diff line number Diff line change @@ -5,4 +5,4 @@ cover-tests=True
55cover-erase =True
66with-coverage =True
77detailed-errors =True
8- cover-package =webpush
8+ cover-package =pywebpush
Original file line number Diff line number Diff line change 33
44from setuptools import setup
55
6- __version__ = "0.2 "
6+ __version__ = "0.3 "
77
88
99def read_from (file ):
@@ -25,7 +25,7 @@ def read_from(file):
2525 CHANGES = f .read ()
2626
2727setup (name = "pywebpush" ,
28- version = "0.2" ,
28+ version = __version__ ,
2929 description = 'WebPush publication library' ,
3030 long_description = README + '\n \n ' + CHANGES ,
3131 classifiers = ["Topic :: Internet :: WWW/HTTP" ,
You can’t perform that action at this time.
0 commit comments