-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.cfg
43 lines (39 loc) · 1.02 KB
/
setup.cfg
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
[metadata]
name = uptrace
description = OpenTelemetry Python distribution for Uptrace
long_description = file: README.md
long_description_content_type = text/markdown
author = Uptrace.dev
author_email = [email protected]
url = https://uptrace.dev
platforms = any
license = BSD
classifiers =
Development Status :: 4 - Beta
Intended Audience :: Developers
License :: OSI Approved :: BSD License
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Typing :: Typed
[options]
python_requires = >=3.7
package_dir=
=src
packages=find_namespace:
zip_safe = False
include_package_data = True
install_requires =
opentelemetry-api~=1.27
opentelemetry-sdk~=1.27
opentelemetry-exporter-otlp~=1.27
opentelemetry-instrumentation~=0.48b0
[options.packages.find]
where = src
include = *
[options.entry_points]
opentelemetry_distro =
uptrace_distro = uptrace.distro:UptraceDistro
[aliases]
test=make test