Files
2020-04-08 10:39:44 -07:00

209 lines
3.5 KiB
TOML

[tool.black]
line-length = 120
target_version = ['py34', 'py35', 'py36', 'py37', 'py38']
exclude = '''
(
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.nox
| \.tox
| \.venv
| _build/
| buck-out/
| build/
| dist/
| ddtrace/(
[^/]+\.py
| commands/
| contrib/
(
aiobotocore
| aiohttp
| aiopg
| algoliasearch
| asyncio
| boto
| botocore
| bottle
| cassandra
| celery
| consul
| dbapi
| django/
(
__init__.py
| apps.py
| cache.py
| compat.py
| conf.py
| db.py
| patch.py
| restframework.py
| templates.py
| utils.py
)
| dogpile_cache
| elasticsearch
| falcon
| flask
| flask_cache
| futures
| gevent
| grpc/
(
__init__.py
| constants.py
| patch.py
| server_interceptor.py
| utils.py
)
| httplib
| jinja2
| kombu
| logging
| mako
| molten
| mongoengine
| mysql
| mysqldb
| psycopg
| pylibmc
| pymemcache
| pymongo
| pymysql
| pyramid
| redis
| rediscluster
| requests/
(
__init__.py
| constants.py
| legacy.py
| patch.py
| session.py
)
| sqlalchemy
| sqlite3
| tornado
| util.py
| vertica
)
| ext/
| http/
| opentracer/
| propagation/
| settings/
| vendor/
)
| tests/
(
base
| benchmark.py
| commands
| contrib/
(
aiobotocore
| aiohttp
| aiopg
| algoliasearch
| asyncio
| boto
| botocore
| bottle
| cassandra
| celery
| config.py
| consul
| dbapi
| django
| djangorestframework
| elasticsearch
| falcon
| flask
| flask_autopatch
| flask_cache
| futures
| gevent
| grpc
| httplib
| jinja2
| kombu
| logging
| mako
| molten
| mongoengine
| mysql
| mysqldb
| patch.py
| psycopg
| pylibmc
| pymemcache
| pymongo
| pymysql
| pyramid/
(
app/web.py
| __init__.py
| test_pyramid.py
| test_pyramid_autopatch.py
)
| redis
| rediscluster
| requests
| requests_gevent
| sqlalchemy
| sqlite3
| test_utils.py
| tornado
| vertica
)
| ddtrace_run.py
| internal/
(
runtime/
| test_context_manager.py
| test_hostname.py
| test_logger.py
| test_rate_limiter.py
)
| memory.py
| opentracer/
(
conftest.py
| test_dd_compatibility.py
| test_span.py
| test_span_context.py
| test_tracer_asyncio.py
| test_tracer_gevent.py
| test_tracer_tornado.py
| test_utils.py
)
| propagation/test_utils.py
| subprocesstest.py
| test_api.py
| test_compat.py
| test_context.py
| test_encoders.py
| test_filters.py
| test_global_config.py
| test_helpers.py
| test_hook.py
| test_instance_config.py
| test_integration.py
| test_payload.py
| test_pin.py
| test_sampler.py
| test_span.py
| test_tracer.py
| test_utils.py
| test_worker.py
| unit
| util.py
| utils
| vendor
| wait-for-services.py
)
)
'''