This repository has been archived by the owner on Sep 4, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
73 lines (66 loc) · 1.95 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
[build-system]
build-backend = "poetry.core.masonry.api"
requires = ["poetry-core>=1.0.0"]
[tool]
[tool.poetry]
authors = ["Cisco Epsagon Team <[email protected]>"]
description = "Cisco Distribution for OpenTelemetry"
license = "Apache-2.0"
name = "cisco-telescope"
readme = "README.md"
repository = "https://github.com/cisco-open/otel-py"
version = "1.0.0"
[tool.poetry.dependencies]
Flask = "^2.1.2"
aiohttp = "^3.8.1"
argparse = "^1.4.0"
certifi = "^2022.5.18.1"
cisco-opentelemetry-specifications = "^0.0.22"
fastapi = "^0.78.0"
grpcio = "^1.46.3"
httpcore = "^0.15.0"
importlib-metadata = "^4.11.4"
itsdangerous = "^2.1.2"
opentelemetry-distro = ">=0.29b"
opentelemetry-exporter-otlp-proto-grpc = ">=1.10.0"
opentelemetry-exporter-otlp-proto-http = ">=1.10.0"
opentelemetry-instrumentation-aiohttp-client = ">=0.29b"
opentelemetry-instrumentation-fastapi = ">=0.29b"
opentelemetry-instrumentation-flask = ">=0.29b"
opentelemetry-instrumentation-grpc = ">=0.29b"
opentelemetry-instrumentation-kafka-python = ">=0.29b"
opentelemetry-instrumentation-pymongo = ">=0.29b"
opentelemetry-instrumentation-requests = ">=0.29b"
opentelemetry-propagator-b3 = ">=1.10.0"
opentelemetry-sdk = ">=1.10.0"
opentelemetry-util-http = ">=0.29b"
packaging = "^21.3"
protobuf = ">=3.19.0"
pymongo = "^3.12.3"
python = "^3.8"
requests = "^2.27.1"
urllib3 = "^1.26.9"
wheel = "^0.37.1"
[tool.poetry.dev-dependencies]
black = "^22.3.0"
ipdb = "^0.13.9"
opentelemetry-test-utils = ">=0.29b"
pytest-cov = "^3.0.0"
pytest-xdist = "^2.5.0"
python-semantic-release = "^7.28.0"
toml-sort = "^0.20.0"
virtualenv = "^20.14.0"
[tool.poetry.scripts]
telescope = 'cisco_telescope.cmd.trace:run'
telescope-bootstrap = 'cisco_telescope.cmd.bootstrap:run'
[tool.pytest.ini_options]
testpaths = [
"tests",
]
[tool.semantic_release]
branch = "main"
build_command = "pip install poetry && poetry build"
upload_to_release = true
upload_to_repository = true
version_source = "tag"
version_variable = "pyproject.toml:version"