forked from instana/python-sensor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
58 lines (57 loc) · 2.5 KB
/
Copy pathsetup.py
File metadata and controls
58 lines (57 loc) · 2.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
from setuptools import setup, find_packages
setup(name='instana',
version='0.10.1',
download_url='https://github.com/instana/python-sensor',
url='https://www.instana.com/',
license='MIT',
author='Instana Inc.',
author_email='peter.lombardo@instana.com',
description='Metrics sensor and distributed trace collector for Instana',
packages=find_packages(exclude=['tests', 'examples']),
long_description="The instana package provides Python metrics and traces for Instana.",
zip_safe=False,
install_requires=['autowrapt>=1.0',
'fysom>=2.1.2',
'opentracing>=1.2.1,<2.0',
'basictracer<3.0'],
entry_points={
'instana': ['string = instana:load'],
'flask': ['flask = instana.flaskana:hook'],
'runtime': ['string = instana:load'], # deprecated: use same as 'instana'
'django': ['string = instana:load'], # deprecated: use same as 'instana'
'django19': ['string = instana:load'], # deprecated: use same as 'instana'
},
extras_require={
'test': [
'nose>=1.0',
'flask>=0.12.2',
'lxml>=3.4',
'MySQL-python>=1.2.5;python_version<="2.7"',
'requests>=2.17.1',
'urllib3[secure]>=1.15',
'spyne>=2.9',
'suds-jurko>=0.6'
],
},
test_suite='nose.collector',
keywords=['performance', 'opentracing', 'metrics', 'monitoring'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Framework :: Django',
'Framework :: Flask',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'Intended Audience :: Science/Research',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Internet :: WWW/HTTP :: WSGI :: Middleware',
'Topic :: System :: Monitoring',
'Topic :: System :: Networking :: Monitoring',
'Topic :: Software Development :: Libraries :: Python Modules'])