Skip to content

Commit e8dd63e

Browse files
committed
Bump package version to 0.8.0
1 parent d94be54 commit e8dd63e

File tree

2 files changed

+24
-24
lines changed

2 files changed

+24
-24
lines changed

instana/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
__copyright__ = 'Copyright 2017 Instana Inc.'
2626
__credits__ = ['Pavlo Baron', 'Peter Giacomo Lombardo']
2727
__license__ = 'MIT'
28-
__version__ = '0.7.12'
28+
__version__ = '0.8.0'
2929
__maintainer__ = 'Peter Giacomo Lombardo'
3030
__email__ = '[email protected]'
3131

setup.py

Lines changed: 23 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,25 @@
11
from setuptools import setup, find_packages
22

33
setup(name='instana',
4-
version='0.7.12',
5-
download_url='https://github.com/instana/python-sensor',
6-
url='https://www.instana.com/',
7-
license='MIT',
8-
author='Instana Inc.',
9-
author_email='[email protected]',
10-
description='Metrics sensor and trace collector for Instana',
11-
packages=find_packages(exclude=['tests', 'examples']),
12-
long_description="The instana package provides Python metrics and traces for Instana.",
13-
zip_safe=False,
14-
install_requires=['autowrapt>=1.0',
15-
'fysom>=2.1.2',
16-
'opentracing>=1.2.1,<1.3',
17-
'basictracer>=2.2.0'],
18-
entry_points={'django': ['django.core.handlers.base = instana.django:hook'],
19-
'django19': ['django.core.handlers.base = instana.django:hook19'],
20-
'flask': ['flask = instana.flaskana:hook'],
21-
'runtime': ['string = instana.runtime:hook']},
22-
extras_require={
4+
version='0.8.0',
5+
download_url='https://github.com/instana/python-sensor',
6+
url='https://www.instana.com/',
7+
license='MIT',
8+
author='Instana Inc.',
9+
author_email='[email protected]',
10+
description='Metrics sensor and trace collector for Instana',
11+
packages=find_packages(exclude=['tests', 'examples']),
12+
long_description="The instana package provides Python metrics and traces for Instana.",
13+
zip_safe=False,
14+
install_requires=['autowrapt>=1.0',
15+
'fysom>=2.1.2',
16+
'opentracing>=1.2.1,<1.3',
17+
'basictracer>=2.2.0'],
18+
entry_points={'django': ['django.core.handlers.base = instana.django:hook'],
19+
'django19': ['django.core.handlers.base = instana.django:hook19'],
20+
'flask': ['flask = instana.flaskana:hook'],
21+
'runtime': ['string = instana.runtime:hook']},
22+
extras_require={
2323
'test': [
2424
'nose>=1.0',
2525
'flask>=0.12.2',
@@ -28,10 +28,10 @@
2828
'lxml>=3.4',
2929
'suds-jurko>=0.6'
3030
],
31-
},
32-
test_suite='nose.collector',
33-
keywords=['performance', 'opentracing', 'metrics', 'monitoring'],
34-
classifiers=[
31+
},
32+
test_suite='nose.collector',
33+
keywords=['performance', 'opentracing', 'metrics', 'monitoring'],
34+
classifiers=[
3535
'Development Status :: 5 - Production/Stable',
3636
'Framework :: Django',
3737
'Framework :: Flask',

0 commit comments

Comments
 (0)