-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
45 lines (34 loc) · 941 Bytes
/
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
[tool.poetry]
name = "temporal-rest-executor"
version = "0.3.1"
description = ""
authors = ["Your Name <[email protected]>"]
readme = "README.md"
packages = [{include = "temporal_rest_executor"}]
[tool.poetry.dependencies]
python = "^3.10"
fastapi = "^0.95.0"
uvicorn = "^0.21.1"
temporalio = "^1.1.0"
rich = "^13.3.3"
[tool.poetry.group.test.dependencies]
pytest = "^7.2.2"
pytest-asyncio = "^0.21.0"
httpx = "^0.23.3"
pytest-cov = "^4.0.0"
[tool.poetry.group.dev.dependencies]
black = "^23.3.0"
flake8 = "^6.0.0"
[tool.poetry.group.otel.dependencies]
temporalio = {version = "^1.1.0", extras = ["opentelementy"]}
opentelemetry-exporter-jaeger-thrift = "^1.17.0"
[tool.poetry.group.docs.dependencies]
mkdocs-material = "^9.1.9"
mkdocs-material-extensions = "^1.1.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
filterwarnings = [
'ignore::DeprecationWarning',
]