This repository has been archived by the owner on Oct 16, 2024. It is now read-only.
forked from DataDog/dd-trace-py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
125 lines (123 loc) · 2.14 KB
/
pyproject.toml
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
115
116
117
118
119
120
121
122
123
124
125
[build-system]
requires = ["setuptools >= 40.6.0", "setuptools_scm[toml] >= 4", "cython"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
version_scheme = "release-branch-semver"
[tool.black]
line-length = 120
target_version = ['py27', 'py35', 'py36', 'py37', 'py38']
include = '''\.py[ix]?$'''
exclude = '''
(
.venv*
| .riot
| ddtrace/internal/_encoding.pyx$
| ddtrace/internal/_rand.pyx$
| ddtrace/profiling/collector/_traceback.pyx$
| ddtrace/profiling/collector/_threading.pyx$
| ddtrace/profiling/collector/stack.pyx$
| \.eggs
| \.git
| \.hg
| \.mypy_cache
| \.nox
| \.tox
| \.venv
| _build/
| buck-out/
| build/
| dist/
| ddtrace/(
contrib/
(
aiobotocore
| aiopg
| boto
| botocore
| cassandra
| celery
| dbapi
| flask_cache
| futures
| gevent
| grpc/
(
__init__.py
| constants.py
| patch.py
| server_interceptor.py
| utils.py
)
| jinja2
| kombu
| mako
| psycopg
| pylibmc
| pylons
| pymemcache
| pymongo
| rediscluster
| sqlalchemy
| tornado
| util.py
)
| ext/
(
cassandra.py
| db.py
| elasticsearch.py
| errors.py
| http.py
| kombu.py
| memcached.py
| mongo.py
| net.py
| priority.py
| sql.py
| system.py
)
| http/
| profiling/exporter/pprof_pb2.py$
| propagation/
| vendor/
)
| tests/
(
contrib/
(
aiobotocore
| aiopg
| boto
| botocore
| cassandra
| config.py
| dbapi
| flask_autopatch
| flask_cache
| futures
| gevent
| grpc
| jinja2
| kombu
| mako
| patch.py
| psycopg
| pylibmc
| pylons
| pymemcache
| pymongo
| rediscluster
| sqlalchemy
| test_utils.py
| tornado
)
| ddtrace_run.py
| profiling/_ast_test_file.py
| subprocesstest.py
| tracer/fixtures
| tracer/[^/]+\.py$
| vendor
| wait-for-services.py
)
)
'''