-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (43 loc) · 1.41 KB
/
pyproject.toml
File metadata and controls
48 lines (43 loc) · 1.41 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
# SPDX-FileCopyrightText: 2023 Magenta ApS <https://magenta.dk>
# SPDX-License-Identifier: MPL-2.0
[tool.poetry]
name = "os2mo-amqp-trigger-manager-terminator"
version = "0.0.0" # versioning handled by conventional commits
description = "An AMQP trigger system for terminating manager positions when managers' engagement has ended"
authors = ["Magenta ApS"]
license = "SPDX-FileCopyrightText: Magenta ApS SPDX-License-Identifier: MPL-2.0"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.11"
pytest-split = "^0.8"
pytest-asyncio = "^0.21"
pytest-cov = "^4"
fastramqpi = "^10"
uvicorn = "^0.23"
pytest = "^8"
pydantic = "^1"
gql = "^3"
ariadne-codegen = {version = "^0.7.1", extras = ["subscriptions"]}
respx = "^0.21"
[tool.poetry.group.pre-commit.dependencies]
mypy = "^1"
pre-commit = "^3"
ruff = "^0.4"
deptry = "^0.16"
[tool.ariadne-codegen]
target_package_name = "autogenerated_graphql_client"
target_package_path = "manager_terminator/"
client_name = "GraphQLClient"
schema_path = "schema.graphql" # Found by running "curl -O http://localhost:5000/graphql/v22/schema.graphql"
queries_path = "queries.graphql"
plugins = [
"ariadne_codegen.contrib.shorter_results.ShorterResultsPlugin",
]
include_comments = false
[tool.ariadne-codegen.scalars.DateTime]
type = "datetime.datetime"
[tool.ariadne-codegen.scalars.UUID]
type = "uuid.UUID"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"