File tree 3 files changed +7
-8
lines changed
3 files changed +7
-8
lines changed Original file line number Diff line number Diff line change 1
- include bencoder.c bencoder. pyx README.rst pytest.ini LICENSE
1
+ include bencoder.pyx README.rst LICENSE
2
2
global-exclude *.pyc __pycache__
3
- recursive-include tests *
3
+ recursive-include tests *.py *.torrent
Original file line number Diff line number Diff line change @@ -10,7 +10,6 @@ A fast bencode implementation in Cython supports both Python2 & Python3 .
10
10
.. image :: https://semaphoreci.com/api/v1/whtsky/bencoder-pyx/branches/develop/shields_badge.svg
11
11
:target: https://semaphoreci.com/whtsky/bencoder-pyx
12
12
13
-
14
13
.. image :: https://img.shields.io/travis/whtsky/bencoder.pyx/develop.svg?maxAge=3600&label=wheels
15
14
:target: https://travis-ci.org/whtsky/bencoder.pyx
16
15
.. image :: https://codecov.io/gh/whtsky/bencoder.pyx/branch/develop/graph/badge.svg
@@ -46,7 +45,8 @@ ChangeLog
46
45
Version 1.1.3
47
46
~~~~~~~~~~~~~~~
48
47
49
- +
48
+ + Performance Improvement
49
+ + Fix package metainfo ` #3 <https://github.com/whtsky/bencoder.pyx/issues/3 >`_
50
50
51
51
Version 1.1.2
52
52
~~~~~~~~~~~~~~~
Original file line number Diff line number Diff line change 11
11
if version < ('2' , '7' ):
12
12
install_requires .append ('ordereddict>=1.1' )
13
13
14
- base_path = os .path .dirname (os .path .abspath (__file__ ))
15
- pyx_path = os .path .join (base_path , 'bencoder.pyx' )
16
- c_path = os .path .join (base_path , 'bencoder.c' )
14
+ pyx_path = 'bencoder.pyx'
15
+ c_path = 'bencoder.c'
17
16
18
17
try :
19
18
import Cython
@@ -100,7 +99,7 @@ def get_tag(self):
100
99
101
100
setup (
102
101
name = 'bencoder.pyx' ,
103
- version = '1.1.2 ' ,
102
+ version = '1.1.3 ' ,
104
103
description = 'Yet another bencode implementation in Cython' ,
105
104
long_description = open ('README.rst' , 'r' ).read (),
106
105
author = 'whtsky' ,
You can’t perform that action at this time.
0 commit comments