diff --git a/MANIFEST.in b/MANIFEST.in index 3e048e6..78b9baf 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -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 diff --git a/README.rst b/README.rst index bdc1b1e..3e5edd2 100644 --- a/README.rst +++ b/README.rst @@ -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 @@ -46,7 +45,8 @@ ChangeLog Version 1.1.3 ~~~~~~~~~~~~~~~ -+ ++ Performance Improvement ++ Fix package metainfo ` #3 `_ Version 1.1.2 ~~~~~~~~~~~~~~~ diff --git a/setup.py b/setup.py index 3c3777f..1200845 100644 --- a/setup.py +++ b/setup.py @@ -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 @@ -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',