Skip to content

Commit

Permalink
Merge pull request #29 from killpanda/dev
Browse files Browse the repository at this point in the history
v0.0.5 released
  • Loading branch information
killpanda authored Dec 12, 2020
2 parents 23893e5 + 72973e4 commit 63e07ce
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ dist
build
tests/.cache/*
.cache
.vscode
venv
.DS_Store
.coverage
4 changes: 2 additions & 2 deletions flask_zipkin.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@
from py_zipkin import zipkin


__version_info__ = ('0', '0', '4')
__version_info__ = ('0', '0', '5')
__version__ = '.'.join(__version_info__)
__author__ = 'killpanda'
__license__ = 'BSD'
__copyright__ = '(c) 2016 by killpanda'
__copyright__ = '(c) 2020 by killpanda'
__all__ = ['Zipkin']


Expand Down
7 changes: 6 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,19 @@

__version__ = '.'.join(eval(version_line.split('__version_info__ = ')[-1]))

with open('README.md', 'r') as f:
long_description = f.read()

setup(
name='Flask-Zipkin',
version=__version__,
url='',
url='https://github.com/qiajigou/flask-zipkin',
license='BSD',
author='killpanda',
author_email='[email protected]',
description='An zipkin extension for Flask based on py_zipkin.',
long_description=long_description,
long_description_content_type='text/markdown',
py_modules=['flask_zipkin'],
zip_safe=False,
platforms='any',
Expand Down

0 comments on commit 63e07ce

Please sign in to comment.