Skip to content

Commit

Permalink
Fix package metainfo.
Browse files Browse the repository at this point in the history
Close #3
  • Loading branch information
whtsky committed Aug 23, 2016
1 parent 00e5c12 commit 9914c3b
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 8 deletions.
4 changes: 2 additions & 2 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
include bencoder.c bencoder.pyx README.rst pytest.ini LICENSE
include bencoder.pyx README.rst LICENSE
global-exclude *.pyc __pycache__
recursive-include tests *
recursive-include tests *.py *.torrent
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ A fast bencode implementation in Cython supports both Python2 & Python3 .
.. image:: https://semaphoreci.com/api/v1/whtsky/bencoder-pyx/branches/develop/shields_badge.svg
:target: https://semaphoreci.com/whtsky/bencoder-pyx


.. image:: https://img.shields.io/travis/whtsky/bencoder.pyx/develop.svg?maxAge=3600&label=wheels
:target: https://travis-ci.org/whtsky/bencoder.pyx
.. image:: https://codecov.io/gh/whtsky/bencoder.pyx/branch/develop/graph/badge.svg
Expand Down Expand Up @@ -46,7 +45,8 @@ ChangeLog
Version 1.1.3
~~~~~~~~~~~~~~~

+
+ Performance Improvement
+ Fix package metainfo ` #3 <https://github.com/whtsky/bencoder.pyx/issues/3>`_

Version 1.1.2
~~~~~~~~~~~~~~~
Expand Down
7 changes: 3 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,8 @@
if version < ('2', '7'):
install_requires.append('ordereddict>=1.1')

base_path = os.path.dirname(os.path.abspath(__file__))
pyx_path = os.path.join(base_path, 'bencoder.pyx')
c_path = os.path.join(base_path, 'bencoder.c')
pyx_path = 'bencoder.pyx'
c_path = 'bencoder.c'

try:
import Cython
Expand Down Expand Up @@ -100,7 +99,7 @@ def get_tag(self):

setup(
name='bencoder.pyx',
version='1.1.2',
version='1.1.3',
description='Yet another bencode implementation in Cython',
long_description=open('README.rst', 'r').read(),
author='whtsky',
Expand Down

0 comments on commit 9914c3b

Please sign in to comment.