|
1 | 1 | from setuptools import setup, find_packages |
2 | 2 |
|
3 | 3 | 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 | | - |
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 | + |
| 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={ |
23 | 23 | 'test': [ |
24 | 24 | 'nose>=1.0', |
25 | 25 | 'flask>=0.12.2', |
|
28 | 28 | 'lxml>=3.4', |
29 | 29 | 'suds-jurko>=0.6' |
30 | 30 | ], |
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=[ |
35 | 35 | 'Development Status :: 5 - Production/Stable', |
36 | 36 | 'Framework :: Django', |
37 | 37 | 'Framework :: Flask', |
|
0 commit comments