-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.cfg
More file actions
115 lines (102 loc) · 2.55 KB
/
setup.cfg
File metadata and controls
115 lines (102 loc) · 2.55 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
115
[metadata]
name = otel-extensions-pytest
description = pytest extensions for OpenTelemetry
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/s4v4g3/otel-extensions-pytest
maintainer = Joe Savage
maintainer_email = joe.savage@gmail.com
version = 0.2.1
license = Apache-2.0
license_file = LICENSE
platforms = any
classifiers =
Environment :: Plugins
Framework :: Pytest
Intended Audience :: Developers
License :: OSI Approved :: Apache Software License
Operating System :: OS Independent
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Topic :: Software Development :: Libraries
Topic :: Software Development :: Testing
Topic :: Utilities
keywords = otel, opentelemetry, debug, pytest
project_urls =
Source=https://github.com/s4v4g3/otel-extensions-pytest
Tracker=https://github.com/s4v4g3/otel-extensions-pytest/issues
[options]
packages = find:
install_requires =
opentelemetry-api
opentelemetry-sdk
otel-extensions>=1.0.0
pytest>=6.2.0
typing_extensions
python_requires = >=3.8
zip_safe = True
[options.packages.find]
exclude =
example
tests
tools
[options.entry_points]
pytest11 = otel_extensions_pytest = otel_extensions_pytest
[options.extras_require]
test =
coverage>=5
[options.package_data]
otel_extensions_pytest =
py.typed
[sdist]
formats = gztar
[bdist_wheel]
universal = true
[flake8]
max-line-length=99
[coverage:report]
fail_under = 100
skip_covered = true
show_missing = true
omit =
example/example.py
[coverage:html]
show_contexts = True
skip_covered = False
skip_empty = False
[coverage:paths]
source =
src
.tox*/*/lib/python*/site-packages
.tox*/pypy*/site-packages
.tox*\*\Lib\site-packages\
*/src
*\src
[tool:pytest]
addopts = -ra --showlocals -vv
testpaths = tests
xfail_strict = True
junit_family = xunit2
[mypy]
python_version = 3.8
disallow_any_generics = True
disallow_subclassing_any = True
disallow_untyped_calls = True
disallow_untyped_defs = True
disallow_incomplete_defs = True
disallow_untyped_decorators = True
show_error_codes = True
no_implicit_optional = True
warn_redundant_casts = True
warn_unused_ignores = False
warn_no_return = True
warn_return_any = True
implicit_reexport = False
strict_equality = True
warn_unused_configs = True
pretty = True