|
| 1 | +# Copyright The OpenTelemetry Authors |
| 2 | +# |
| 3 | +# Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | +# you may not use this file except in compliance with the License. |
| 5 | +# You may obtain a copy of the License at |
| 6 | +# |
| 7 | +# http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | +# |
| 9 | +# Unless required by applicable law or agreed to in writing, software |
| 10 | +# distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | +# See the License for the specific language governing permissions and |
| 13 | +# limitations under the License. |
| 14 | +# |
| 15 | +[metadata] |
| 16 | +name = opentelemetry-configurator-default |
| 17 | +description = OpenTelemetry Python Default Configurator |
| 18 | +long_description = file: README.rst |
| 19 | +long_description_content_type = text/x-rst |
| 20 | +author = OpenTelemetry Authors |
| 21 | + |
| 22 | +url = https://github.com/open-telemetry/opentelemetry-python/tree/main/opentelemetry-configurator-default |
| 23 | +platforms = any |
| 24 | +license = Apache-2.0 |
| 25 | +classifiers = |
| 26 | + Development Status :: 4 - Beta |
| 27 | + Intended Audience :: Developers |
| 28 | + License :: OSI Approved :: Apache Software License |
| 29 | + Programming Language :: Python |
| 30 | + Programming Language :: Python :: 3 |
| 31 | + Programming Language :: Python :: 3.6 |
| 32 | + Programming Language :: Python :: 3.7 |
| 33 | + Programming Language :: Python :: 3.8 |
| 34 | + Typing :: Typed |
| 35 | + |
| 36 | +[options] |
| 37 | +python_requires = >=3.6 |
| 38 | +package_dir= |
| 39 | + =src |
| 40 | +packages=find_namespace: |
| 41 | +zip_safe = False |
| 42 | +include_package_data = True |
| 43 | +install_requires = |
| 44 | + opentelemetry-api ~= 1.3 |
| 45 | + opentelemetry-instrumentation == 0.23b0 |
| 46 | + opentelemetry-sdk == 1.4.0 |
| 47 | + |
| 48 | +[options.packages.find] |
| 49 | +where = src |
| 50 | + |
| 51 | +[options.entry_points] |
| 52 | +opentelemetry-configurator = |
| 53 | + default = opentelemetry.configurator.default.DefaultConfigurator |
| 54 | + |
| 55 | +[options.extras_require] |
| 56 | +test = |
| 57 | +otlp = |
| 58 | + opentelemetry-exporter-otlp == 1.4.0 |
0 commit comments