/setup.py
https://github.com/uber-common/opentracing-python-instrumentation · Python · 66 lines · 64 code · 2 blank · 0 comment · 1 complexity · 95010f3e025bbad82f32510142f16da3 MD5 · raw file
- from setuptools import setup, find_packages
- with open('README.md', 'r') as fh:
- long_description = fh.read()
- setup(
- name='opentracing_instrumentation',
- version='3.3.2.dev0',
- author='Yuri Shkuro',
- author_email='ys@uber.com',
- description='Tracing Instrumentation using OpenTracing API '
- '(http://opentracing.io)',
- long_description=long_description,
- long_description_content_type='text/markdown',
- license='MIT',
- url='https://github.com/uber-common/opentracing-python-instrumentation',
- keywords=['opentracing'],
- classifiers=[
- 'Development Status :: 5 - Production/Stable',
- 'Intended Audience :: Developers',
- 'License :: OSI Approved :: MIT License',
- 'Programming Language :: Python :: 2.7',
- 'Programming Language :: Python :: 3.5',
- 'Programming Language :: Python :: 3.6',
- 'Programming Language :: Python :: 3.7',
- 'Programming Language :: Python :: Implementation :: PyPy',
- 'Topic :: Software Development :: Libraries :: Python Modules',
- ],
- packages=find_packages(exclude=['tests', 'tests.*']),
- include_package_data=True,
- zip_safe=False,
- platforms='any',
- install_requires=[
- 'future',
- 'wrapt',
- 'tornado>=4.1,<6',
- 'contextlib2',
- 'opentracing>=2,<3',
- 'six',
- ],
- extras_require={
- 'tests': [
- 'boto3',
- 'botocore',
- 'celery',
- 'doubles',
- 'flake8',
- 'flake8-quotes',
- 'mock',
- 'moto',
- 'MySQL-python; python_version=="2.7"',
- 'psycopg2-binary',
- 'sqlalchemy>=1.3.7',
- 'pytest',
- 'pytest-cov',
- 'pytest-localserver',
- 'pytest-mock',
- 'pytest-tornado',
- 'basictracer>=3,<4',
- 'redis',
- 'Sphinx',
- 'sphinx_rtd_theme',
- 'testfixtures',
- ]
- },
- )