-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
44 lines (39 loc) · 1.36 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
# SPDX-FileCopyrightText: 2023 Magenta ApS <https://magenta.dk>
# SPDX-License-Identifier: MPL-2.0
[tool.poetry]
name = "job function configurator"
version = "0.0.0" # versioning handled by conventional commits
description = "OS2mo AMQP trigger receiver for configuring job functions, allowing to edit the visibility settings of said functions as wished"
authors = ["Magenta ApS <info@magenta.dk>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10"
pytest-split = "^0.8.1"
pytest-asyncio = "^0.23.2"
pytest-cov = "^4.1.0"
fastramqpi = "^2.0.0"
uvicorn = "^0.24.0"
pytest = "^7.4.3"
pydantic = "^1.10.13"
raclients = "^3.3.2"
gql = "^3.4.1"
pre-commit = "^3.6.0"
ariadne-codegen = {version = "^0.7.1", extras = ["subscriptions"]}
[tool.poetry.group.dev.dependencies]
tomli = "^2.0.1"
[tool.ariadne-codegen]
target_package_name = "autogenerated_graphql_client"
target_package_path = "job_function_configurator/"
client_name = "GraphQLClient"
schema_path = "schema.graphql" # Found by running "curl -O http://localhost:5000/graphql/v19/schema.graphql"
queries_path = "queries.graphql"
plugins = [
"ariadne_codegen.contrib.shorter_results.ShorterResultsPlugin",
]
[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"