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
114 lines (106 loc) · 4.65 KB
/
Copy pathsetup.py
File metadata and controls
114 lines (106 loc) · 4.65 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
# coding: utf-8
import sys
from os import path
from distutils.version import LooseVersion
from setuptools import find_packages, setup
VERSION = '1.14.2'
# Import README.md into long_description
pwd = path.abspath(path.dirname(__file__))
if sys.version_info[0] > 2:
with open(path.join(pwd, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
else:
with open(path.join(pwd, 'README.md')) as f:
long_description = f.read()
def check_setuptools():
""" Validate that we have min version required of setuptools """
import pkg_resources
st_version = pkg_resources.get_distribution('setuptools').version
if LooseVersion(st_version) < LooseVersion('20.2.2'):
exit('The Instana sensor requires a newer verion of `setuptools` (>=20.2.2).\n'
'Please run `pip install --upgrade setuptools` to upgrade. \n'
' and then try the install again.\n'
'Also:\n'
' `pip show setuptools` - shows the current version\n'
' To see the setuptool releases: \n'
' https://setuptools.readthedocs.io/en/latest/history.html')
check_setuptools()
setup(name='instana',
version=VERSION,
url='https://www.instana.com/',
project_urls={
'CI: CircleCI': 'https://circleci.com/gh/instana/python-sensor',
'Documentation': 'https://docs.instana.io/ecosystem/python/',
'GitHub: issues': 'https://github.com/instana/python-sensor/issues',
'GitHub: repo': 'https://github.com/instana/python-sensor',
'Support': 'https://support.instana.com',
},
license='MIT',
author='Instana Inc.',
author_email='peter.lombardo@instana.com',
description='🐍 Python Distributed Tracing & Metrics Sensor for Instana',
packages=find_packages(exclude=['tests', 'examples']),
long_description=long_description,
long_description_content_type='text/markdown',
zip_safe=False,
install_requires=['autowrapt>=1.0',
'basictracer>=3.0.0',
'certifi>=2018.4.16',
'fysom>=2.1.2',
'opentracing>=2.0.0',
'requests>=2.8.0',
'urllib3>=1.18.1'],
entry_points={
'instana': ['string = instana:load'],
'flask': ['string = instana:load'], # deprecated: use same as 'instana'
'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': [
'aiohttp>=3.5.4;python_version>="3.5"',
'asynqp>=0.4;python_version>="3.5"',
'django>=1.11,<2.2',
'nose>=1.0',
'flask>=0.12.2',
'lxml>=3.4',
'mock>=2.0.0',
'mysqlclient>=1.3.14;python_version>="3.5"',
'MySQL-python>=1.2.5;python_version<="2.7"',
'PyMySQL[rsa]>=0.9.1',
'pyOpenSSL>=16.1.0;python_version<="2.7"',
'pytest>=3.0.1',
'psycopg2>=2.7.1',
'redis<3.0.0',
'requests>=2.17.1',
'sqlalchemy>=1.1.15',
'spyne>=2.9,<=2.12.14',
'suds-jurko>=0.6',
'tornado>=4.5.3,<6.0',
'urllib3[secure]>=1.15'
],
},
test_suite='nose.collector',
keywords=['performance', 'opentracing', 'metrics', 'monitoring',
'tracing', 'distributed-tracing'],
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'])